-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (42 loc) · 1.19 KB
/
publish.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: Publish package to GitHub Packages
on:
push:
branches:
- master
- yuri/fix-publish-2
jobs:
tag:
runs-on: ubuntu-latest
outputs:
tagcreated: ${{ steps.autotag.outputs.tagcreated }}
tagname: ${{ steps.autotag.outputs.tagname }}
steps:
- uses: actions/checkout@v4
- uses: butlerlogic/[email protected]
id: autotag
with:
head_branch: yuri/fix-publish-2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: [tag]
# important, only triggers if tag was created
if: needs.tag.outputs.tagcreated == 'yes'
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
with:
node-version: '22.x'
registry-url: 'https://npm.pkg.github.com'
# Defaults to the user or organization that owns the workflow file
scope: '@paritytech'
- run: yarn install --immutable
- run: yarn build
- run: yarn npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}