Skip to content

Commit

Permalink
set build workflow to run on push and PR event
Browse files Browse the repository at this point in the history
  • Loading branch information
Arief-AK committed May 23, 2024
1 parent 69499fb commit 750fa72
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: Setup and build packages

# To manually run the workflow on GH, use the workflow_dispatch event trigger
on: workflow_dispatch
# on: workflow_dispatch

# To automatically run on every push to GH, use the push and pull_request event trigger
# on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
on:
push:
branches:
- main
pull_request:
branches:
- main

env:
USER: github.actor
Expand Down

0 comments on commit 750fa72

Please sign in to comment.