Skip to content

Commit

Permalink
Merge pull request #2 from threefoldtech/main-workflow
Browse files Browse the repository at this point in the history
Adds workflow to run from zos-light
  • Loading branch information
ashraffouda authored Aug 20, 2024
2 parents 0ea6170 + 8c36958 commit 361f55d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
# will use the tag value (has to start with v)
- name: Tagging
uses: threefoldtech/publish-flist@master
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v'))
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v' || github.ref == 'refs/heads/zos-light'))
with:
token: ${{ secrets.HUB_JWT }}
action: tag
Expand All @@ -83,11 +83,11 @@ jobs:
# only for main branch (devnet)
# this basically releases this build to devnet
- name: Cross tagging (development)
if: success() && github.ref == 'refs/heads/main'
if: success() && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/zos-light')
uses: threefoldtech/publish-flist@master
with:
token: ${{ secrets.HUB_JWT }}
action: crosstag
user: tf-zos
name: development
name: development-v4
target: tf-autobuilder/${{ steps.tag.outputs.reference }}

0 comments on commit 361f55d

Please sign in to comment.