explo(ghactions): -
This commit is contained in:
parent
bd2ef3d400
commit
afaaa3f4e1
25
.github/workflows/dist.yml
vendored
25
.github/workflows/dist.yml
vendored
|
@ -1,13 +1,30 @@
|
|||
---
|
||||
name: dist
|
||||
on: push
|
||||
"on":
|
||||
push:
|
||||
branches: [master]
|
||||
jobs:
|
||||
dist:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: make dist
|
||||
- uses: actions/upload-artifact@v3
|
||||
- name: Check out the repo
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Go
|
||||
uses: actions/setup-go@v3
|
||||
with:
|
||||
go-version: "^1.19.1"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt install libgtk-3-dev libcairo2-dev libglib2.0-dev
|
||||
|
||||
- name: Run `make dist`
|
||||
run: make dist
|
||||
|
||||
- name: Upload dist package
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dist-package
|
||||
path: target/Gomics*.zip
|
||||
|
|
Loading…
Reference in a new issue