Skip to content

Commit

Permalink
Fixed GH Action env syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ARolek committed Dec 22, 2020
1 parent 154b7cc commit ee0e4fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on_release_publish.yml
Expand Up @@ -45,7 +45,7 @@ jobs:
name: version

- name: Set tegola version
run: echo "::set-env name=VERSION::$(cat version/version.txt)"
run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV

- name: Set up Go 1.14
uses: actions/setup-go@v2
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
name: version

- name: Set tegola version
run: echo "::set-env name=VERSION::$(cat version/version.txt)"
run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV

- name: Build and tag Docker container
run: |
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
name: version

- name: Set tegola version
run: echo "::set-env name=VERSION::$(cat version/version.txt)"
run: echo "VERSION=$(cat version/version.txt)" >> $GITHUB_ENV

- name: Set up Go 1.14
uses: actions/setup-go@v1
Expand Down

0 comments on commit ee0e4fa

Please sign in to comment.