-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
357 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v6.2.0-beta.1 | ||
v7.0.0-beta.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
# Github action to build Docker image from beta branch (tag: beta) | ||
name: Build debian beta-node18 | ||
|
||
on: | ||
release: | ||
types: [prereleased] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-beta-node18-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Getting published prerelease tag | ||
run: echo "RELEASE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | ||
|
||
- name: Checkout repo | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'buanet/ioBroker.docker' | ||
ref: ${{ env.RELEASE_TAG }} | ||
|
||
- name: Get and write version and date | ||
id: version | ||
run: | | ||
VERSION="$(cat .VERSION)" | ||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')" | ||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')" | ||
echo "This is the Version: $VERSION" | ||
echo "version=$VERSION" >> $GITHUB_ENV | ||
echo "This is the Major Version: $MAJORVERSION" | ||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV | ||
echo "This is the Buildnumber/Timestamp: $DATI" | ||
echo "dati=$DATI" >> $GITHUB_ENV | ||
# startup script | ||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp | ||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh | ||
# amd64 | ||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${DATI}/$DATI/" ./debian/node18/Dockerfile > ./debian/node18/Dockerfile.tmp | ||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile | ||
- name: Set up manifest tool | ||
run: | | ||
wget https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-linux-amd64 -O manifest-tool | ||
chmod +x manifest-tool | ||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
password: ${{ secrets.PACKAGES_PASS }} | ||
|
||
- name: Build Docker image (node18-amd64) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/amd64 | ||
tags: | | ||
buanet/iobroker:${{ env.version }}-node18-amd64, | ||
ghcr.io/buanet/iobroker:${{ env.version }}-node18-amd64 | ||
- name: Build Docker image (node18-arm32v7) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:${{ env.version }}-node18-arm32v7, | ||
ghcr.io/buanet/iobroker:${{ env.version }}-node18-arm32v7 | ||
- name: Build Docker image (node18-arm64v8) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/arm64/v8 | ||
tags: | | ||
buanet/iobroker:${{ env.version }}-node18-arm64v8, | ||
ghcr.io/buanet/iobroker:${{ env.version }}-node18-arm64v8 | ||
- name: Create and push manifests | ||
run: | | ||
sed -e "s/\${VERSION}/${{ env.version }}-node18/g" -e "s/\${DOCKERTAG}/beta-node18/g" ./manifest.yml > manifest_beta-node18.yaml | ||
./manifest-tool --username ${{ secrets.DOCKER_USER }} --password ${{ secrets.DOCKER_PASS }} push from-spec manifest_beta-node18.yaml | ||
sed -e "s/\${VERSION}/${{ env.version }}-node18/g" -e "s/\${DOCKERTAG}/beta-node18/g" ./manifest_ghcr.yml > manifest_ghcr_beta-node18.yaml | ||
./manifest-tool --username ${{ secrets.PACKAGES_USER }} --password ${{ secrets.PACKAGES_PASS }} push from-spec manifest_ghcr_beta-node18.yaml | ||
sed -e "s/\${VERSION}/${{ env.version }}-node18/g" -e "s/\${DOCKERTAG}/${{ env.version }}-node18/g" ./manifest.yml > manifest_version-node18.yaml | ||
./manifest-tool --username ${{ secrets.DOCKER_USER }} --password ${{ secrets.DOCKER_PASS }} push from-spec manifest_version-node18.yaml | ||
sed -e "s/\${VERSION}/${{ env.version }}-node18/g" -e "s/\${DOCKERTAG}/${{ env.version }}-node18/g" ./manifest_ghcr.yml > manifest_ghcr_version-node18.yaml | ||
./manifest-tool --username ${{ secrets.PACKAGES_USER }} --password ${{ secrets.PACKAGES_PASS }} push from-spec manifest_ghcr_version-node18.yaml | ||
- name: Delete untagged images from GitHub packages | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.PACKAGES_PASS }} | ||
script: | | ||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions", | ||
{ per_page: ${{ env.PER_PAGE }} | ||
}); | ||
for(version of response.data) { | ||
if (version.metadata.container.tags.length == 0) { | ||
console.log("delete " + version.id) | ||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { }); | ||
console.log("status " + deleteResponse.status) | ||
} | ||
} | ||
env: | ||
OWNER: buanet | ||
PACKAGE_NAME: iobroker | ||
PER_PAGE: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,8 +35,8 @@ jobs: | |
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp | ||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh | ||
# amd64 | ||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${DATI}/$DATI/" ./debian/node14/Dockerfile > ./debian/node14/Dockerfile.tmp | ||
mv -f ./debian/node14/Dockerfile.tmp ./debian/node14/Dockerfile | ||
sed -e "s/\${VERSION}/$VERSION/" -e "s/\${DATI}/$DATI/" ./debian/node16/Dockerfile > ./debian/node16/Dockerfile.tmp | ||
mv -f ./debian/node16/Dockerfile.tmp ./debian/node16/Dockerfile | ||
- name: Set up manifest tool | ||
run: | | ||
|
@@ -67,7 +67,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/amd64 | ||
tags: | | ||
|
@@ -78,7 +78,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/arm/v7 | ||
tags: | | ||
|
@@ -89,7 +89,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/arm64/v8 | ||
tags: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Github action to build Docker image from dev branch (tag: dev) | ||
name: Build debian dev-node18 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-dev-node18-image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo (dev) | ||
uses: actions/checkout@v3 | ||
with: | ||
repository: 'buanet/ioBroker.docker' | ||
ref: 'main' | ||
|
||
- name: Get and write version and date | ||
id: version | ||
run: | | ||
VERSION="$(cat .VERSION)" | ||
MAJORVERSION="$(cat .VERSION | cut -c 1-2 | sed -r 's#^(.{0})#\1latest-#')" | ||
DATI="$(date --rfc-3339=seconds | sed 's/ /T/')" | ||
echo "This is the Version: $VERSION" | ||
echo "version=$VERSION" >> $GITHUB_ENV | ||
echo "This is the Major Version: $MAJORVERSION" | ||
echo "majorversion=$MAJORVERSION" >> $GITHUB_ENV | ||
echo "This is the Buildnumber/Timestamp: $DATI" | ||
echo "dati=$DATI" >> $GITHUB_ENV | ||
# startup script | ||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp | ||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh | ||
# amd64 | ||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" ./debian/node18/Dockerfile > ./debian/node18/Dockerfile.tmp | ||
mv -f ./debian/node18/Dockerfile.tmp ./debian/node18/Dockerfile | ||
- name: Set up manifest tool | ||
run: | | ||
wget https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-linux-amd64 -O manifest-tool | ||
chmod +x manifest-tool | ||
- name: Set up QEMU | ||
uses: docker/[email protected] | ||
|
||
- name: Set up Docker Buildx | ||
id: buildx | ||
uses: docker/[email protected] | ||
|
||
- name: Login to DockerHub | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKER_USER }} | ||
password: ${{ secrets.DOCKER_PASS }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/[email protected] | ||
with: | ||
registry: ghcr.io | ||
username: ${{ secrets.PACKAGES_USER }} | ||
password: ${{ secrets.PACKAGES_PASS }} | ||
|
||
- name: Build Docker image (node18-amd64) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/amd64 | ||
tags: | | ||
buanet/iobroker:dev-node18-amd64, | ||
ghcr.io/buanet/iobroker:dev-node18-amd64 | ||
- name: Build Docker image (node18-arm32v7) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:dev-node18-arm32v7, | ||
ghcr.io/buanet/iobroker:dev-node18-arm32v7 | ||
- name: Build Docker image (node18-arm64v8) | ||
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node18/Dockerfile | ||
push: true | ||
platforms: linux/arm64/v8 | ||
tags: | | ||
buanet/iobroker:dev-node18-arm64v8, | ||
ghcr.io/buanet/iobroker:dev-node18-arm64v8 | ||
- name: Create and push manifests | ||
run: | | ||
sed -e "s/\${VERSION}/dev-node18/g" -e "s/\${DOCKERTAG}/dev-node18/g" ./manifest.yml > manifest_dev-node18.yaml | ||
./manifest-tool --username ${{ secrets.DOCKER_USER }} --password ${{ secrets.DOCKER_PASS }} push from-spec manifest_dev-node18.yaml | ||
sed -e "s/\${VERSION}/dev-node18/g" -e "s/\${DOCKERTAG}/dev-node18/g" ./manifest_ghcr.yml > manifest_ghcr_dev-node18.yaml | ||
./manifest-tool --username ${{ secrets.PACKAGES_USER }} --password ${{ secrets.PACKAGES_PASS }} push from-spec manifest_ghcr_dev-node18.yaml | ||
- name: Delete untagged images from GitHub packages | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: ${{ secrets.PACKAGES_PASS }} | ||
script: | | ||
const response = await github.request("GET /users/${{ env.OWNER }}/packages/container/${{ env.PACKAGE_NAME }}/versions", | ||
{ per_page: ${{ env.PER_PAGE }} | ||
}); | ||
for(version of response.data) { | ||
if (version.metadata.container.tags.length == 0) { | ||
console.log("delete " + version.id) | ||
const deleteResponse = await github.request("DELETE /user/packages/container/${{ env.PACKAGE_NAME }}/versions/" + version.id, { }); | ||
console.log("status " + deleteResponse.status) | ||
} | ||
} | ||
env: | ||
OWNER: buanet | ||
PACKAGE_NAME: iobroker | ||
PER_PAGE: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,8 +30,8 @@ jobs: | |
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${BUILD}/$DATI/" ./debian/scripts/iobroker_startup.sh > ./debian/scripts/iobroker_startup.tmp | ||
mv -f ./debian/scripts/iobroker_startup.tmp ./debian/scripts/iobroker_startup.sh | ||
# amd64 | ||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" ./debian/node14/Dockerfile > ./debian/node14/Dockerfile.tmp | ||
mv -f ./debian/node14/Dockerfile.tmp ./debian/node14/Dockerfile | ||
sed -e "s/\${VERSION}/$VERSION-dev/" -e "s/\${DATI}/$DATI/" ./debian/node16/Dockerfile > ./debian/node16/Dockerfile.tmp | ||
mv -f ./debian/node16/Dockerfile.tmp ./debian/node16/Dockerfile | ||
- name: Set up manifest tool | ||
run: | | ||
|
@@ -62,7 +62,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/amd64 | ||
tags: | | ||
|
@@ -73,7 +73,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/arm/v7 | ||
tags: | | ||
|
@@ -84,7 +84,7 @@ jobs: | |
uses: docker/[email protected] | ||
with: | ||
context: ./debian | ||
file: ./debian/node14/Dockerfile | ||
file: ./debian/node16/Dockerfile | ||
push: true | ||
platforms: linux/arm64/v8 | ||
tags: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.