diff --git a/.github/workflows/dist.yml b/.github/workflows/dist.yml index a86509b..5b0a209 100644 --- a/.github/workflows/dist.yml +++ b/.github/workflows/dist.yml @@ -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