-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump home-assistant/builder from 2023.06.0 to 2023.06.1 (#114)
* Bump home-assistant/builder from 2023.06.0 to 2023.06.1 Bumps [home-assistant/builder](https://github.com/home-assistant/builder) from 2023.06.0 to 2023.06.1. - [Release notes](https://github.com/home-assistant/builder/releases) - [Commits](home-assistant/builder@2023.06.0...2023.06.1) --- updated-dependencies: - dependency-name: home-assistant/builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * use cosign --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pascal Vizeli <[email protected]>
- Loading branch information
1 parent
209f3b7
commit 753d9ca
Showing
2 changed files
with
15 additions
and
15 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 |
---|---|---|
|
@@ -45,20 +45,17 @@ jobs: | |
name: Build ${{ matrix.arch }} plugin | ||
needs: init | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
id-token: write | ||
strategy: | ||
matrix: | ||
arch: ${{ fromJson(needs.init.outputs.architectures) }} | ||
steps: | ||
- name: Checkout the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Login to DockerHub | ||
if: needs.init.outputs.publish == 'true' | ||
uses: docker/[email protected] | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
if: needs.init.outputs.publish == 'true' | ||
uses: docker/[email protected] | ||
|
@@ -72,12 +69,13 @@ jobs: | |
run: echo "BUILD_ARGS=--test" >> $GITHUB_ENV | ||
|
||
- name: Build plugin | ||
uses: home-assistant/[email protected].0 | ||
uses: home-assistant/[email protected].1 | ||
with: | ||
args: | | ||
$BUILD_ARGS \ | ||
--${{ matrix.arch }} \ | ||
--target /data \ | ||
--cosign \ | ||
--generic ${{ needs.init.outputs.version }} | ||
env: | ||
CAS_API_KEY: ${{ secrets.CAS_TOKEN }} | ||
|
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,14 +1,16 @@ | ||
image: homeassistant/{arch}-hassio-cli | ||
shadow_repository: ghcr.io/home-assistant | ||
image: ghcr.io/home-assistant/{arch}-hassio-cli | ||
build_from: | ||
aarch64: ghcr.io/home-assistant/aarch64-base:3.16 | ||
armhf: ghcr.io/home-assistant/armhf-base:3.16 | ||
armv7: ghcr.io/home-assistant/armv7-base:3.16 | ||
amd64: ghcr.io/home-assistant/amd64-base:3.16 | ||
i386: ghcr.io/home-assistant/i386-base:3.16 | ||
aarch64: ghcr.io/home-assistant/aarch64-base:3.17 | ||
armhf: ghcr.io/home-assistant/armhf-base:3.17 | ||
armv7: ghcr.io/home-assistant/armv7-base:3.17 | ||
amd64: ghcr.io/home-assistant/amd64-base:3.17 | ||
i386: ghcr.io/home-assistant/i386-base:3.17 | ||
codenotary: | ||
signer: [email protected] | ||
base_image: [email protected] | ||
cosign: | ||
base_identity: https://github.com/home-assistant/docker-base/.* | ||
identity: https://github.com/home-assistant/plugin-cli/.* | ||
args: | ||
CLI_VERSION: 4.26.0 | ||
RLWRAP_VERSION: 0.45.2 | ||
|