mirror of
https://github.com/chirimen-oh/node-web-i2c.git
synced 2025-01-18 08:05:10 +00:00
26 lines
654 B
YAML
26 lines
654 B
YAML
name: publish
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "lts/*"
|
|
cache: yarn
|
|
registry-url: https://registry.npmjs.org/
|
|
- run: yarn
|
|
- name: Git configuration.
|
|
run: |
|
|
git config --global user.email bot@example
|
|
git config --global user.name bot
|
|
- name: Publish.
|
|
run: |
|
|
npm version patch
|
|
git push --atomic --tags origin HEAD
|
|
npm publish
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|