We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108914b commit 3ac21b4Copy full SHA for 3ac21b4
.github/workflows/main.yml
@@ -1,9 +1,6 @@
1
name: Build And Push
2
3
on:
4
- pull_request:
5
- branches:
6
- - master
7
push:
8
branches:
9
- master
.github/workflows/pr.yml
@@ -0,0 +1,28 @@
+name: Build And Push
+
+on:
+ pull_request:
+ branches:
+ - master
+permissions:
10
+ contents: write
11
+ pull-requests: write
12
+ packages: write
13
14
+jobs:
15
+ goreleaser:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ -
19
+ name: Checkout
20
+ uses: actions/checkout@v4
21
22
+ name: Set up Go
23
+ uses: actions/setup-go@v5
24
+ with:
25
+ go-version: '1.23.10'
26
27
+ name: Build
28
+ run: make build
0 commit comments