Skip to content

Commit

Permalink
release: added 'next' branch for next-release
Browse files Browse the repository at this point in the history
  • Loading branch information
nishu-codes committed Jan 5, 2025
1 parent 29cee38 commit c205285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ env:
OSTREE_REPO: ${{secrets.OSTREE_REPO}}
OSTREE_GPG: ${{secrets.OSTREE_GPG}}
VERSION: ${{ startsWith(github.ref, 'refs/tags/') && github.ref_name || 'continuous' }}
CHANNEL: ${{ endsWith(github.ref, 'stable') && 'stable' || 'unstable' }}
OSTREE_BRANCH: "x86_64/os/${{ endsWith(github.ref, 'stable') && 'stable' || 'unstable' }}"
CHANNEL: ${{ endsWith(github.ref, 'stable') && 'stable' || (endsWith(github.ref, 'next') && 'next' || 'unstable') }}
OSTREE_BRANCH: "x86_64/os/${{ endsWith(github.ref, 'stable') && 'stable' || (endsWith(github.ref, 'next') && 'next' || 'unstable') }}"
SIGN_KEYS_PATH: ${{secrets.SIGN_KEYS_PATH}}

jobs:
Expand Down

0 comments on commit c205285

Please sign in to comment.