Skip to content

Commit

Permalink
buildtest branches too (minor artifact name fix) (#442)
Browse files Browse the repository at this point in the history
* buildtest branches too
* minor artifact name fix
* workflow bash([[ == ]]), not posix([ = ]), nor broken mix.
  • Loading branch information
nerdCopter authored Dec 17, 2020
1 parent 8e73765 commit eca0f34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Make artifact name
id: make_artifactname
run: |
if ["${{ github.REPOSITORY }}" == "emuflight/EmuFlight"] ; then
if [[ "${{ github.REPOSITORY }}" == "emuflight/EmuFlight" ]] ; then
ARTIFACT_NAME="EmuFlight-${{ env.VERSION }}-${{ github.run_number }}"
else
ARTIFACT_NAME="EmuFlight-${{ env.VERSION }}-${{ github.ACTOR }}-${{ github.run_number }}"
Expand Down

0 comments on commit eca0f34

Please sign in to comment.