Skip to content

Commit

Permalink
chore(ci): create release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jguer committed Oct 11, 2021
1 parent a09a3c1 commit fb9d8ff
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,22 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Read info
id: tags
shell: bash
run: |
echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
echo ::set-output name=TAG::${GITHUB_REF/refs\/tags\//}
- name: Create Release
id: create_release
uses: actions/create-release@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tags.outputs.tag }}
release_name: ${{ steps.tags.outputs.tag }}
draft: false
prerelease: false
- name: Release Notary Action
uses: docker://aevea/release-notary:0.9.3
env:
Expand Down

0 comments on commit fb9d8ff

Please sign in to comment.