Skip to content

Commit

Permalink
Merge pull request #78 from bullhorn/f/snapshot
Browse files Browse the repository at this point in the history
build: adding back snapshot publishing
  • Loading branch information
dvoegelin authored Apr 26, 2022
2 parents cdc1920 + 7c0d04c commit b3a794b
Show file tree
Hide file tree
Showing 4 changed files with 535 additions and 1,160 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x]
node-version: [12.x]

steps:
- uses: actions/checkout@v1
Expand Down Expand Up @@ -33,3 +33,21 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release
- uses: actions/upload-artifact@master
with:
name: build-artifact
path: lib

publish:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: build-artifact
path: lib
- uses: bvkimball/[email protected]
- env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
run: sh snapshot-publish
Loading

0 comments on commit b3a794b

Please sign in to comment.