1
0
Fork 0
mirror of https://github.com/aevea/action-kaniko.git synced 2025-01-30 22:09:37 +01:00

feat(ci): Add release notary GitHub action

This commit is contained in:
Alex Viscreanu 2020-02-16 23:10:52 +01:00
parent 43b3f63082
commit bd12547855
No known key found for this signature in database
GPG key ID: 60A6BD7F046C850B

18
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,18 @@
name: Release
on:
push:
tags:
- "v*"
jobs:
release-notes:
name: Release Notes
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Release Notary Action
uses: docker://commitsar/release-notary
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}