-
Notifications
You must be signed in to change notification settings - Fork 7
39 lines (31 loc) · 1.12 KB
/
signrelease.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Sign and Release Module
on:
push:
branches:
- 'release/*'
jobs:
sign_and_release_module:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install GPG
run: sudo apt-get update && sudo apt-get install gnupg -y
- name: Import GPG key
run: echo "${{ secrets.GPG_SIGNING_KEY }}" | base64 --decode | gpg --import
- name: Extract version and rawname from module.xml
run: |
version=$(awk -F'[><]' '/<version>/{print $3}' /location/of/module/module.xml)
rawname=$(awk -F'[><]' '/<rawname>/{print $3}' /location/of/module/module.xml)
echo "::set-env name=version::$version"
echo "::set-env name=rawname::$rawname"
- name: Sign module
run: |
gpg --batch --yes --armor --detach-sign /location/of/module/$rawname-$version.tar.gz
- name: Push signed module to releases
uses: softprops/action-gh-release@v1
with:
files: /location/of/module/$rawname-$version.tar.gz.asc
tag_name: v$version
title: Release $version
token: ${{ secrets.GITHUB_TOKEN }}