Skip to content

Bump @actions/core from 1.10.1 to 1.11.1 (#13) #15

Bump @actions/core from 1.10.1 to 1.11.1 (#13)

Bump @actions/core from 1.10.1 to 1.11.1 (#13) #15

Workflow file for this run

name: Build Action
on:
push:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: NPM Install
run: npm ci
- name: Build
run: node_modules/@vercel/ncc/dist/ncc/cli.js build index.js
- name: Commit dist
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A dist
git commit -m "Update dist"
- name: Push Changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master