Skip to content

Commit

Permalink
add action that builds/pushes new image for main
Browse files Browse the repository at this point in the history
  • Loading branch information
jblom committed Oct 2, 2024
1 parent c46b909 commit de36c1d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: main branch - test; build & push to ghcr

on:
push:
branches:
- main
paths-ignore:
- README.md
- LICENSE

jobs:
test:
uses: ./.github/workflows/check-project.yml

build-push-image:
uses: beeldengeluid/gha-workflows/.github/workflows/build-push-image.yml@71d9cba5e50f829007d4ba9391e827ddc3864d0c # v2024.09.02
secrets: inherit
needs: [test]
permissions:
contents: read
packages: write
id-token: write

0 comments on commit de36c1d

Please sign in to comment.