You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/.github/workflows/release.yml

43 lines
965 B
YAML

name: release
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
release-packages:
environment:
name: artifactory
url: https://gitsecret.jfrog.io/artifactory
runs-on: ubuntu-latest
strategy:
matrix:
release-type:
- apk
- deb
- rpm
steps:
- uses: actions/checkout@v2
- name: Run checks
run: SECRETS_RELEASE_TYPE="${{ matrix.release-type }}" make release
env:
SECRETS_ARTIFACTORY_CREDENTIALS: ${{ secrets.SECRETS_ARTIFACTORY_CREDENTIALS }}
github-release:
runs-on: ubuntu-latest
needs: ['release-packages']
steps:
- uses: actions/checkout@v2
- run: make changelog
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: softprops/action-gh-release@v1
with:
# Generated above by `make changelog`:
body_path: CHANGELOG-RELEASE.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}