mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-03-23 06:00:15 +00:00
feat(binana): change tool to deposit generated files into an 'artifacts' folder that isn't retained by repository history
This commit is contained in:
parent
68f52b8efd
commit
47b08df145
44 changed files with 904 additions and 622 deletions
42
.github/workflows/push.yml
vendored
Normal file
42
.github/workflows/push.yml
vendored
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
name: Push
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- "Makefile"
|
||||
- "go.mod"
|
||||
- "go.sum"
|
||||
- "go/**"
|
||||
- "profile/**"
|
||||
branches:
|
||||
- artifacts
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version:
|
||||
"stable" # Uses the latest stable Go version
|
||||
|
||||
# checkout repository
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
# build binana tool
|
||||
- name: Make tool
|
||||
run: make dependencies
|
||||
|
||||
# run binana tool
|
||||
- name: Make artifacts
|
||||
run: make artifacts
|
||||
|
||||
# upload artifacts
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: artifacts
|
||||
path: artifacts/
|
||||
Loading…
Add table
Add a link
Reference in a new issue