Skip to content

Bump @actions/core from 1.6.0 to 1.9.1 (#5) #15

Bump @actions/core from 1.6.0 to 1.9.1 (#5)

Bump @actions/core from 1.6.0 to 1.9.1 (#5) #15

Workflow file for this run

name: Compile
on:
push:
branches: [main]
jobs:
compile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
- uses: actions/setup-node@v2
with:
node-version: '17'
- name: Compile action
run: |
yarn install --frozen-lockfile
yarn compile
- name: Commit new index.js
run: |
git config --global user.email "eli.segal@gmail.com"
git config --global user.name "rockem"
git diff --quiet HEAD || git commit -am "ci:Updated compilation of index.js [skip ci]"
git push