Skip to content

v0.0.27.9

v0.0.27.9 #25

Workflow file for this run

name: Porte
on:
release:
types: [created]
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [linux]
goarch: [amd64]
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "https://dl.google.com/go/go1.21.2.linux-amd64.tar.gz"
project_path: "./porte"
binary_name: "porte"
extra_files: LICENSE
pre_command: apt-get update && apt-get install -y pcscd libpcsclite-dev gcc pkg-config && export CGO_ENABLED=1