chore: fix LAM workflow #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Local artifact mirror | |
on: | |
pull_request: | |
paths: | |
- 'sdk/**' | |
- 'lam/**' | |
push: | |
tags: | |
- "lam/*.*.*" | |
permissions: | |
contents: write | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: lam | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Cache Melange | |
uses: actions/cache@v4 | |
with: | |
path: | | |
build/.melange-cache | |
key: melange-cache | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: lam/go.mod | |
- name: Setup Melange | |
uses: chainguard-dev/actions/setup-melange@main | |
- name: Build local-artifact-mirror binary | |
run: make bin/local-artifact-mirror | |
- name: Build local-artifact-mirror package | |
run: make melange-build-local-artifact-mirror | |
- name: Bundle repo | |
if: startsWith(github.ref, 'refs/tags/') | |
run: | | |
cd build | |
tar -czvf repo.tar.gz packages | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: | | |
bin/local-artifact-mirror-*-* | |
build/melange.rsa.pub | |
build/repo.tar.gz |