2020-02-16 23:10:52 +01:00
|
|
|
name: Release
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
release-notes:
|
|
|
|
name: Release Notes
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
2022-03-01 19:45:14 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-01-24 10:13:19 +01:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-02-16 23:10:52 +01:00
|
|
|
|
|
|
|
- name: Release Notary Action
|
2022-12-27 21:24:46 +01:00
|
|
|
uses: docker://aevea/release-notary@sha256:b77e86ce9ce4b0c8774cdb3b807b756d1d6139d73aca74388560250de259be4e
|
2020-02-16 23:10:52 +01:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2020-02-16 23:16:55 +01:00
|
|
|
|
|
|
|
- name: GitHub Package Registry
|
2020-04-25 23:23:21 +02:00
|
|
|
uses: aevea/action-kaniko@master
|
2020-02-16 23:16:55 +01:00
|
|
|
with:
|
2022-02-21 15:25:01 +01:00
|
|
|
registry: ghcr.io
|
2020-02-16 23:16:55 +01:00
|
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
image: kaniko
|
|
|
|
cache: true
|
|
|
|
cache_registry: cache
|
|
|
|
|
|
|
|
- name: Dockerhub
|
2020-04-25 23:23:21 +02:00
|
|
|
uses: aevea/action-kaniko@master
|
2020-02-16 23:16:55 +01:00
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
2020-04-25 23:23:21 +02:00
|
|
|
image: aevea/kaniko
|
2020-02-16 23:16:55 +01:00
|
|
|
cache: true
|
2020-04-25 23:23:21 +02:00
|
|
|
cache_registry: aevea/cache
|