Skip to content

Commit

Permalink
Merge pull request #975 from psavery/tags-hexrd-channel
Browse files Browse the repository at this point in the history
Use hexrd channel for tag pushes
  • Loading branch information
psavery authored Jul 2, 2021
2 parents 6a8268a + a3fae7f commit 0500731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- name: Set channel for HEXRD ( hexrd or hexrd-prerelease )
run: |
[[ ${{ github.event_name }} = 'push' && ${{ github.ref }} = 'refs/heads/master' ]] && echo "HEXRD_PACKAGE_CHANNEL=HEXRD" >> $GITHUB_ENV || echo "HEXRD_PACKAGE_CHANNEL=HEXRD/label/hexrd-prerelease" >> $GITHUB_ENV
[[ ${{ github.event_name == 'push' }} && ${{ startsWith(github.ref, 'refs/tags/') }} ]] && echo "HEXRD_PACKAGE_CHANNEL=HEXRD" >> $GITHUB_ENV || echo "HEXRD_PACKAGE_CHANNEL=HEXRD/label/hexrd-prerelease" >> $GITHUB_ENV
- name: Create conda environment to build HEXRDGUI
working-directory: hexrdgui
Expand Down

0 comments on commit 0500731

Please sign in to comment.