Skip to content

自動でプッシュまで行う #1

自動でプッシュまで行う

自動でプッシュまで行う #1

name: build and publish package
on:
push:
branches:
- main
paths-ignore:
- '**[skip-ci]*'
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- name: Install openapi-generator-cli
run: npm install -g @openapitools/openapi-generator-cli
- name: Generate src
run: openapi-generator-cli generate -i ./docs/cuculus-openapi.yaml -g typescript-fetch -o ./src -c ./config.json
- name: Commit and push
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add src/
git commit -m "$(date +'%Y-%m-%d') Update [skip-ci]"
git push
- name: Package install
run: npm install
- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}