mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2024-12-25 20:52:06 -05:00
0264ae0ba7
Bumps [actions/checkout](https://github.com/actions/checkout) from v2.3.2 to v2.3.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.2...a81bbbf8298c0fa03ea29cdc473d45769f953675) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96 lines
2.8 KiB
YAML
96 lines
2.8 KiB
YAML
name: ci
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 10 * * *' # everyday at 10am
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
push:
|
|
branches:
|
|
- master
|
|
- releases/v*
|
|
|
|
jobs:
|
|
armored:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.3
|
|
-
|
|
name: Get test key and passphrase
|
|
uses: actions/github-script@v3
|
|
id: test
|
|
with:
|
|
script: |
|
|
const fs = require('fs');
|
|
core.setOutput('pgp', fs.readFileSync('.github/test-key.pgp', {encoding: 'utf8'}));
|
|
core.setOutput('passphrase', fs.readFileSync('.github/test-key.pass', {encoding: 'utf8'}));
|
|
-
|
|
name: Import GPG
|
|
id: import_gpg
|
|
uses: ./
|
|
with:
|
|
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
|
|
-
|
|
name: GPG user IDs
|
|
run: |
|
|
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 }}"
|
|
|
|
base64:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-latest
|
|
- macOS-latest
|
|
- windows-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2.3.3
|
|
-
|
|
name: Get test key and passphrase
|
|
uses: actions/github-script@v3
|
|
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
|
|
uses: ./
|
|
with:
|
|
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
|
|
-
|
|
name: GPG user IDs
|
|
run: |
|
|
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 }}"
|