Skip to content

Commit

Permalink
full metal panic
Browse files Browse the repository at this point in the history
  • Loading branch information
metasansana committed Aug 15, 2023
1 parent 456a56f commit 5aa2ada
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 27 deletions.
27 changes: 0 additions & 27 deletions .github/workflows/build.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build
on:
push

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: quenktechnologies/.github/actions/node/build@master
pr:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref != 'refs/heads/master' }}
steps:
- uses: quenktechnologies/.github/actions/github/auto-pr@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
runs-on: ubuntu-latest
needs: build
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- uses: quenktechnologies/.github/actions/node/publish@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5aa2ada

Please sign in to comment.