mirror of
https://github.com/crazy-max/ghaction-import-gpg.git
synced 2025-01-18 22:04:45 +01:00
28 lines
487 B
YAML
28 lines
487 B
YAML
name: ci
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v2
|
|
-
|
|
name: Build
|
|
run: |
|
|
npm install
|
|
npm run build
|
|
-
|
|
name: Import GPG key
|
|
uses: ./
|
|
env:
|
|
ACTIONS_STEP_DEBUG: ${{ secrets.ACTIONS_STEP_DEBUG }}
|
|
SIGNING_KEY: ${{ secrets.SIGNING_KEY_TEST }}
|