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-01-24 10:05:34 +01:00
|
|
|
uses: actions/checkout@v2
|
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-01-24 10:04:54 +01:00
|
|
|
uses: docker://aevea/release-notary@sha256:8b26ced466da96b23a947d5c9e58baac22ee1192fd08200011e5b178f42118a0
|
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:
|
|
|
|
registry: docker.pkg.github.com
|
|
|
|
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
|