Update actions/checkout action to v4 (#325) #184
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Automated Build" | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: oven-sh/setup-bun@a1800f471a0bc25cddac36bb13e6f436ddf341d7 # v1 | |
with: | |
bun-version: 1.0.1 | |
- name: Cache node_modules | |
id: cache-npm-packages | |
uses: actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1 | |
env: | |
cache-name: cache-node_modules | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('bun.lockb') }} | |
- name: Install Dependencies | |
if: ${{ steps.cache-npm-packages.outputs.cache-hit != 'true' }} | |
run: bun install | |
- name: Build | |
run: bun run build | |
- name: Commit & Push changes | |
uses: actions-js/push@156f2b10c3aa000c44dbe75ea7018f32ae999772 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
message: Update dist/index.js; ${{ github.event.head_commit.message }} | |
branch: dist | |
force: true |