Bumps the dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node). Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) Updates `actions/setup-node` from 3 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
961 B
YAML
44 lines
961 B
YAML
name: Release
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- published
|
|
|
|
jobs:
|
|
registries:
|
|
name: Publish to GitHub NPM
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install NodeJS
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
registry-url: https://npm.pkg.github.com
|
|
scope: "@eveshipfit"
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set version
|
|
run: |
|
|
# Remove the "v" from the version.
|
|
VERSION=$(echo ${{ github.ref_name }} | cut -b2-)
|
|
echo "Version: ${VERSION}"
|
|
|
|
sed -i 's/"version": "0.0.0-git"/"version": "'${VERSION}'"/' package.json
|
|
|
|
- name: Install dependencies
|
|
run: npm install
|
|
|
|
- name: Create NPM package
|
|
run: npm run build
|
|
|
|
- uses: JS-DevTools/npm-publish@v3
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
registry: "https://npm.pkg.github.com"
|
|
package: package.json
|