Skip to content

Commit

Permalink
Merge pull request #105 from smoser/feature/0.5.x-tagged-builds
Browse files Browse the repository at this point in the history
Add builds of tags for 0.5.x
  • Loading branch information
smoser authored May 30, 2023
2 parents 5e58e19 + 3da6470 commit 8ac2943
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-cirros.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- 0.5.x
tags:
- "0.5.[0-9]+"
pull_request:
branches:
- 0.5.x
Expand Down Expand Up @@ -46,8 +48,11 @@ jobs:
- name: Install job dependencies
run: sudo apt-get install cloud-utils qemu-system openbios-ppc

- name: Build cirros image
run: bin/build-release daily
- name: Build CirrOS image
env:
# use tag name for tag build, or 'daily' for anything else.
reason: "${{ github.ref_type == 'tag' && github.ref_name || 'daily' }}"
run: bin/build-release "$reason"

- name: Upload build artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 8ac2943

Please sign in to comment.