ci: change how env is set

This commit is contained in:
will Farrell 2020-12-02 11:35:28 -07:00
parent 85a0ecf368
commit 44a4708123
No known key found for this signature in database
GPG Key ID: 3FC6D79E2208B22A

View File

@ -31,11 +31,11 @@ jobs:
- if: github.ref == 'refs/heads/main'
name: Conditional(Set tag as `latest`)
run: echo ::set-output name=tag::latest
run: echo "tag=latest >> $GITHUB_ENV"
- if: startsWith(github.ref, 'refs/tags/')
name: Conditional(Set tag as `{version}`)
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
run: echo "tag=${GITHUB_REF#refs/*/} >> $GITHUB_ENV"
-
name: Build and push