Skip to content

Commit

Permalink
add workflow to run goreleaser snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
nickysemenza committed Apr 19, 2023
1 parent b4d0d87 commit 2fab338
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/snapshot.yml
@@ -0,0 +1,18 @@
name: Image snapshots

on:
push:
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make snapshot
- name: Archive snapshot artifacts
uses: actions/upload-artifact@v3
with:
name: binaries
path: dist/

0 comments on commit 2fab338

Please sign in to comment.