Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rebuild main #17

Merged
merged 2 commits into from
Dec 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build
on:
push:
branches: main
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{secrets.BOT_TOKEN}}
- uses: crazy-max/ghaction-import-gpg@v3.0.2
with:
gpg-private-key: ${{secrets.BOT_GPG_SIGN_KEY}}
git-user-signingkey: true
- run: npm ci
- run: git diff --quiet || git commit --all -m 'Build' --gpg-sign=FD5E66973D2B8B86
- run: git push --signed=if-asked
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
uses: ./node-version # this would be nodenv/actions/node-version@v2 for most users
- uses: actions/setup-node@v1
with:
node-version: '${{ steps.nodenv.outputs.node-version }}'
node-version: "${{ steps.nodenv.outputs.node-version }}"
- run: node -v
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

name: Release
on:
push: { tags: 'v[0-9]+.[0-9]+.[0-9]+' }
push: { tags: "v[0-9]+.[0-9]+.[0-9]+" }

jobs:
github:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sync Subtrees
on:
push:
branches: main
tags: 'v[0-9]+.[0-9]+.[0-9]+'
tags: "v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test
on: [ push, pull_request ]
on: [push, pull_request]

jobs:
test:
Expand Down