Skip to content

Commit

Permalink
Fix Yaml for github actions (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Withers authored Dec 4, 2020
1 parent b2658ad commit 7c743f9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ jobs:
docker push $ECR_REGISTRY/$NGINX_ECR_REPOSITORY:$IMAGE_TAG
- name: Create Release
id: create_release
uses: actions/create-release@v1
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.create_tag.outputs.new_tag }}
release_name: ${{ steps.create_tag.outputs.new_tag }}
draft: false
prerelease: false
id: create_release
uses: actions/create-release@v1
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.create_tag.outputs.new_tag }}
release_name: ${{ steps.create_tag.outputs.new_tag }}
draft: false
prerelease: false

0 comments on commit 7c743f9

Please sign in to comment.