remove CGO #14
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: Publish Package | |
permissions: | |
contents: read | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up OPS | |
run: | | |
curl https://ops.city/get.sh -sSfL | sh | |
- name: Login | |
run: | | |
export OPS_DIR="$HOME/.ops" | |
export PATH="$HOME/.ops/bin:$PATH" | |
ops pkg login ${{ secrets.OPS_KEY }} | |
- name: Push | |
run: | | |
export OPS_DIR="$HOME/.ops" | |
export PATH="$HOME/.ops/bin:$PATH" | |
echo "Version: $(./scripts/get-version.sh)" | |
make pkg-push |