We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d4bef commit 0d3fb05Copy full SHA for 0d3fb05
.github/workflows/publish.yml
@@ -6,7 +6,7 @@ permissions: write-all
6
7
jobs:
8
9
- publish-npm:
+ publish:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v4
@@ -21,9 +21,9 @@ jobs:
21
sed -i "s|\(uses: forproxyband/vector-code-map@\)v[0-9.]*|\1${{ NPM_PACKAGE_VERSION }}|g" README.md
22
- run: git add README.md
23
- run: |
24
- git tag -a ${NPM_PACKAGE_VERSION} -m "Add tag ${NPM_PACKAGE_VERSION}"
25
- git push origin ${NPM_PACKAGE_VERSION}
26
git commit -m "Set version ${NPM_PACKAGE_VERSION} by ${GITHUB_ACTOR}"
27
git push -u origin main
+ git tag -a ${NPM_PACKAGE_VERSION} -m "Add tag ${NPM_PACKAGE_VERSION}"
+ git push origin ${NPM_PACKAGE_VERSION}
28
env:
29
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
0 commit comments