Skip to content

Commit

Permalink
builds release on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Aug 5, 2024
1 parent 1f1ce0f commit 8b78ff9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
with:
fetch-depth: 0

- name: Change tag in recipe.
run: |
sed 's/ghcr.io\/vanilla-os\/core:dev/ghcr.io\/vanilla-os\/core:main/' -i recipe.yml
- uses: vanilla-os/[email protected]
with:
recipe: 'recipe.yml'
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/vib-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:

steps:
- name: Verify Base Image Integrity
if: ${{ github.ref_type == 'tag' }}
run:
gh attestation verify oci://ghcr.io/vanilla-os/core:main --owner Vanilla-OS
env:
Expand All @@ -35,6 +36,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Change tag in recipe.
if: ${{ github.ref_type == 'tag' }}
run: |
sed 's/ghcr.io\/vanilla-os\/core:dev/ghcr.io\/vanilla-os\/core:main/' -i recipe.yml
- uses: vanilla-os/[email protected]
with:
recipe: 'recipe.yml'
Expand All @@ -51,6 +57,16 @@ jobs:
echo "REPO_OWNER_LOWERCASE=$REPO_OWNER_LOWERCASE" >> "$GITHUB_ENV"
echo "IMAGE_URL=ghcr.io/$REPO_OWNER_LOWERCASE/desktop" >> "$GITHUB_ENV"
- name: Extra image tag branch
if: ${{ github.ref_type != 'tag' }}
run: |
echo "EXTRA_TAG='ref,event=branch'" >> "$GITHUB_ENV"
- name: Extra image tag release
if: ${{ github.ref_type == 'tag' }}
run: |
echo "EXTRA_TAG='raw,main'" >> "$GITHUB_ENV"
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
Expand All @@ -62,7 +78,7 @@ jobs:
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{raw}}
type=semver,pattern=v{{major}}
type=ref,event=branch
type=${{ env.EXTRA_TAG }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 8b78ff9

Please sign in to comment.