Skip to content

ci: test exec

ci: test exec #8

Workflow file for this run

name: "Build"
on:
push:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
environment: main
steps:
- name: "Checkout"
uses: actions/checkout@v4
- name: Install dependencies
run: yarn install
- name: Build project
run: yarn build
- name: Commit build artifacts
run: |
yarn install
yarn build
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Build artifacts"
git push