Skip to content

Commit

Permalink
release-script-artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajpatel committed May 1, 2022
1 parent 1c6b811 commit e45d44a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,20 @@ jobs:
- run: npm i -g yarn
- run: yarn install
- run: yarn build
- uses: actions/upload-artifact@master
with:
name: publish-artifact
path: .

publish-npm:
needs: [ build ]
runs-on: ubuntu-latest
steps:
- run: mkdir -p publish
- uses: actions/download-artifact@master
with:
name: publish-artifact
path: publish
- uses: actions/setup-node@v3
with:
node-version: 14
Expand All @@ -36,6 +45,11 @@ jobs:
needs: [ build ]
runs-on: ubuntu-latest
steps:
- run: mkdir -p publish
- uses: actions/download-artifact@master
with:
name: publish-artifact
path: publish
- uses: actions/setup-node@v3
with:
node-version: 14
Expand Down

0 comments on commit e45d44a

Please sign in to comment.