2020-05-03 15:09:41 -04:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
2020-05-23 19:14:15 -04:00
|
|
|
schedule:
|
|
|
|
- cron: '0 10 * * *' # everyday at 10am
|
2020-05-03 15:09:41 -04:00
|
|
|
push:
|
|
|
|
branches:
|
2021-01-29 06:29:31 -05:00
|
|
|
- 'master'
|
|
|
|
- 'releases/v*'
|
2021-03-30 14:00:40 -04:00
|
|
|
tags:
|
|
|
|
- 'v*'
|
2021-01-29 06:29:31 -05:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- 'master'
|
2021-03-30 14:00:40 -04:00
|
|
|
- 'releases/v*'
|
2020-05-03 15:09:41 -04:00
|
|
|
|
|
|
|
jobs:
|
2020-05-18 11:18:07 -04:00
|
|
|
armored:
|
2020-05-03 15:35:54 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macOS-latest
|
2020-05-05 18:31:46 -04:00
|
|
|
- windows-latest
|
2020-05-03 15:09:41 -04:00
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-07 20:56:13 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-05-12 14:18:51 -04:00
|
|
|
-
|
2020-05-12 14:48:02 -04:00
|
|
|
name: Get test key and passphrase
|
2021-05-09 05:08:44 -04:00
|
|
|
uses: actions/github-script@v4
|
2020-05-12 14:30:44 -04:00
|
|
|
id: test
|
2020-05-12 14:36:05 -04:00
|
|
|
with:
|
|
|
|
script: |
|
2020-05-12 14:37:28 -04:00
|
|
|
const fs = require('fs');
|
2020-05-12 14:36:05 -04:00
|
|
|
core.setOutput('pgp', fs.readFileSync('.github/test-key.pgp', {encoding: 'utf8'}));
|
|
|
|
core.setOutput('passphrase', fs.readFileSync('.github/test-key.pass', {encoding: 'utf8'}));
|
2020-05-03 15:09:41 -04:00
|
|
|
-
|
2020-05-18 11:18:07 -04:00
|
|
|
name: Import GPG
|
2020-05-07 14:46:52 -04:00
|
|
|
id: import_gpg
|
2020-05-03 15:09:41 -04:00
|
|
|
uses: ./
|
2020-05-04 14:59:11 -04:00
|
|
|
with:
|
2020-09-06 16:03:16 -04:00
|
|
|
gpg-private-key: ${{ steps.test.outputs.pgp }}
|
|
|
|
passphrase: ${{ steps.test.outputs.passphrase }}
|
|
|
|
git-user-signingkey: true
|
|
|
|
git-commit-gpgsign: true
|
|
|
|
git-tag-gpgsign: true
|
|
|
|
git-push-gpgsign: true
|
2020-05-07 14:46:52 -04:00
|
|
|
-
|
|
|
|
name: GPG user IDs
|
|
|
|
run: |
|
|
|
|
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
|
|
|
|
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
|
2020-05-12 14:48:02 -04:00
|
|
|
echo "name: ${{ steps.import_gpg.outputs.name }}"
|
2020-05-07 14:46:52 -04:00
|
|
|
echo "email: ${{ steps.import_gpg.outputs.email }}"
|
2020-05-18 11:18:07 -04:00
|
|
|
|
|
|
|
base64:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
os:
|
|
|
|
- ubuntu-latest
|
|
|
|
- macOS-latest
|
|
|
|
- windows-latest
|
|
|
|
steps:
|
|
|
|
-
|
|
|
|
name: Checkout
|
2020-11-07 20:56:13 -05:00
|
|
|
uses: actions/checkout@v2
|
2020-05-18 11:15:05 -04:00
|
|
|
-
|
2020-05-18 11:18:07 -04:00
|
|
|
name: Get test key and passphrase
|
2021-05-09 05:08:44 -04:00
|
|
|
uses: actions/github-script@v4
|
2020-05-18 11:18:07 -04:00
|
|
|
id: test
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
const fs = require('fs');
|
|
|
|
core.setOutput('pgp-base64', fs.readFileSync('.github/test-key-base64.pgp', {encoding: 'utf8'}));
|
|
|
|
core.setOutput('passphrase', fs.readFileSync('.github/test-key.pass', {encoding: 'utf8'}));
|
|
|
|
-
|
|
|
|
name: Import GPG
|
|
|
|
id: import_gpg
|
2020-05-18 11:15:05 -04:00
|
|
|
uses: ./
|
|
|
|
with:
|
2020-09-06 16:03:16 -04:00
|
|
|
gpg-private-key: ${{ steps.test.outputs.pgp-base64 }}
|
|
|
|
passphrase: ${{ steps.test.outputs.passphrase }}
|
|
|
|
git-user-signingkey: true
|
|
|
|
git-commit-gpgsign: true
|
|
|
|
git-tag-gpgsign: true
|
|
|
|
git-push-gpgsign: true
|
2020-05-18 11:15:05 -04:00
|
|
|
-
|
|
|
|
name: GPG user IDs
|
|
|
|
run: |
|
2020-05-18 11:18:07 -04:00
|
|
|
echo "fingerprint: ${{ steps.import_gpg.outputs.fingerprint }}"
|
|
|
|
echo "keyid: ${{ steps.import_gpg.outputs.keyid }}"
|
|
|
|
echo "name: ${{ steps.import_gpg.outputs.name }}"
|
|
|
|
echo "email: ${{ steps.import_gpg.outputs.email }}"
|