Skip to content

Commit 2fab338

Browse files
committed
add workflow to run goreleaser snapshot
1 parent b4d0d87 commit 2fab338

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/snapshot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Image snapshots
2+
3+
on:
4+
push:
5+
pull_request:
6+
branches: [master]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- run: make snapshot
14+
- name: Archive snapshot artifacts
15+
uses: actions/upload-artifact@v3
16+
with:
17+
name: binaries
18+
path: dist/

0 commit comments

Comments
 (0)