mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
34 lines
No EOL
939 B
YAML
34 lines
No EOL
939 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
publish:
|
|
if: contains(github.event.head_commit.message, 'chore(release)') == false
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '16.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
- run: yarn install --pure-lockfile
|
|
- run: yarn build
|
|
- name: Setup git config
|
|
run: |
|
|
git config --global user.name "standardci"
|
|
git config --global user.email "ci@standardnotes.com"
|
|
- name: Import GPG key
|
|
uses: crazy-max/ghaction-import-gpg@v4
|
|
with:
|
|
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
passphrase: ${{ secrets.PASSPHRASE }}
|
|
git_user_signingkey: true
|
|
git_commit_gpgsign: true
|
|
- run: yarn version-bump |