Skip to content

Commit

Permalink
Try to fix yml syntax...
Browse files Browse the repository at this point in the history
* Issue on id.. weird
  • Loading branch information
abessette committed Sep 1, 2021
1 parent ae29984 commit 75bbea7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -103,7 +103,9 @@ jobs:

- name: Get tag
id: get_tag
run: [[ ${{ github.ref }} =~ refs\/tags\/(.*) ]] && echo "::set-output name=value::${BASH_REMATCH[1]}"
run: |
[[ ${{ github.ref }} =~ refs\/tags\/(.*) ]];
echo "::set-output name=value::${BASH_REMATCH[1]}";
- name: Create docker image archive
run: docker save mage:latest | gzip > mage_latest.tar.gz
Expand Down

0 comments on commit 75bbea7

Please sign in to comment.