ci: add fix release notary action #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release-notes: | |
name: Release Notes | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Release Notary Action | |
uses: docker://aevea/release-notary@sha256:b77e86ce9ce4b0c8774cdb3b807b756d1d6139d73aca74388560250de259be4e | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: release-notary publish | |
- name: GitHub Package Registry | |
uses: aevea/action-kaniko@master | |
with: | |
registry: ghcr.io | |
password: ${{ secrets.GITHUB_TOKEN }} | |
image: kaniko | |
cache: true | |
cache_registry: cache | |
- name: Dockerhub | |
uses: aevea/action-kaniko@master | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
image: aevea/kaniko | |
cache: true | |
cache_registry: aevea/cache |