-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #428 from buanet/beta
Prepare for v9.1.0 release
- Loading branch information
Showing
26 changed files
with
256 additions
and
1,813 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 @@ | ||
v9.0.1 | ||
v9.1.0-beta.4 |
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 |
---|---|---|
|
@@ -77,8 +77,8 @@ jobs: | |
push: true | ||
platforms: | | ||
linux/amd64 | ||
linux/arm/v7 | ||
linux/arm64/v8 | ||
# linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:beta, | ||
buanet/iobroker:${{ env.version }}, | ||
|
@@ -158,29 +158,3 @@ jobs: | |
ghcr.io/buanet/iobroker:${{ env.version }}-node${{ vars.EXPERIMENTAL_NODE_VERSION }} | ||
provenance: false | ||
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net) | ||
|
||
delete-untagged-images: | ||
if: ${{ always() }} | ||
needs: [build-with-recommended-node, build-with-experimental-node] | ||
name: Delete untagged images from GitHub Container Registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete images | ||
uses: actions/[email protected] | ||
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 |
---|---|---|
|
@@ -71,12 +71,12 @@ jobs: | |
push: true | ||
platforms: | | ||
linux/amd64 | ||
linux/arm64 | ||
linux/arm/v7 | ||
linux/arm64/v8 | ||
# linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:dev, | ||
ghcr.io/buanet/iobroker:dev | ||
buanet/iobroker:dev-node${{ vars.RECOMMENDED_NODE_VERSION }}, | ||
ghcr.io/buanet/iobroker:dev, | ||
ghcr.io/buanet/iobroker:dev-node${{ vars.RECOMMENDED_NODE_VERSION }} | ||
build-with-experimental-node: | ||
|
@@ -137,34 +137,8 @@ jobs: | |
push: true | ||
platforms: | | ||
linux/amd64 | ||
linux/arm64 | ||
linux/arm64/v8 | ||
# linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:dev-node${{ vars.EXPERIMENTAL_NODE_VERSION }}, | ||
ghcr.io/buanet/iobroker:dev-node${{ vars.EXPERIMENTAL_NODE_VERSION }} | ||
delete-untagged-images: | ||
if: ${{ always() }} | ||
needs: [build-with-recommended-node, build-with-experimental-node] | ||
name: Delete untagged images from GitHub Container Registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete images | ||
uses: actions/[email protected] | ||
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 |
---|---|---|
|
@@ -71,8 +71,8 @@ jobs: | |
push: true | ||
platforms: | | ||
linux/amd64 | ||
linux/arm/v7 | ||
linux/arm64/v8 | ||
# linux/arm/v7 | ||
tags: | | ||
buanet/iobroker:latest, | ||
buanet/iobroker:${{ env.majorversion }}, | ||
|
@@ -140,37 +140,11 @@ jobs: | |
push: true | ||
platforms: | | ||
linux/amd64 | ||
linux/arm/v7 | ||
linux/arm64/v8 | ||
# linux/arm/v7 | ||
tags: | | ||
iobroker/iobroker:latest, | ||
iobroker/iobroker:${{ env.majorversion }}, | ||
iobroker/iobroker:${{ env.version }}, | ||
provenance: false | ||
outputs: type=image,name=target,annotation-index.org.opencontainers.image.description=Official Docker image for ioBroker smarthome software (https://www.iobroker.net) | ||
|
||
delete-untagged-images: | ||
if: ${{ always() }} | ||
needs: [build-latest-for-buanet, build-latest-for-iobroker] | ||
name: Delete untagged images from GitHub Container Registry | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Delete images | ||
uses: actions/[email protected] | ||
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.