Skip to content

Update actions to v4 build-ibiss.yml #7

Update actions to v4 build-ibiss.yml

Update actions to v4 build-ibiss.yml #7

Workflow file for this run

name: Build Ibiss
on:
workflow_dispatch:
pull_request:
types:
- closed
jobs:
build:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: npm run actions:install
- name: Build
run: npm run build # Replace this with the command to build your JavaScript files
- name: Commit and push changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git add .
git commit -m "Build Ibiss"
git push origin master