1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2024-09-19 21:35:53 +02:00
libcproject/.github/workflows/release.yml

42 lines
1.1 KiB
YAML
Raw Normal View History

2023-01-05 21:13:10 +01:00
name: 'Release'
on:
push:
branches: [master]
jobs:
release:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.1.0'
with:
fetch-depth: 0
persist-credentials: false
- name: 'Import GPG key'
uses: 'crazy-max/ghaction-import-gpg@v4'
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true
git_commit_gpgsign: true
- name: 'Install Build Tools'
2023-01-05 21:16:02 +01:00
run: 'sudo apt-get install --yes build-essential gcc make clang-format'
2023-01-05 21:13:10 +01:00
- run: 'make set_version'
- name: 'Use Node.js'
uses: 'actions/setup-node@v3.1.0'
with:
node-version: 'lts/*'
- name: 'Install Release Tools'
2023-01-05 21:18:49 +01:00
run: 'npm install --global semantic-release @commitlint/config-conventional @semantic-release/git @semantic-release/exec @saithodev/semantic-release-backmerge'
2023-01-05 21:13:10 +01:00
- name: 'Release'
run: 'semantic-release'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}