a1df3b4070
I have not upgraded ooni/go yet because I am also checking whether it would be possible instead to use ooni/oocrypto as documented in the https://github.com/ooni/probe/issues/2106 issue. Closes https://github.com/ooni/probe/issues/2070 Closes https://github.com/ooni/probe/issues/2077
31 lines
846 B
YAML
31 lines
846 B
YAML
# vendors Go modules and publishes tarball
|
|
name: tarball
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*"
|
|
|
|
jobs:
|
|
generate_tarball:
|
|
runs-on: "ubuntu-20.04"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "1.18.2"
|
|
- name: Generate release tarball
|
|
run: |
|
|
VERSION=${GITHUB_REF_NAME#v}
|
|
go mod vendor
|
|
tar czf ooni-probe-cli-${VERSION}.tar.gz --transform "s,^,ooni-probe-cli-${VERSION}/," *
|
|
- name: Upload release tarball
|
|
run: |
|
|
gh release create -p $GITHUB_REF_NAME --target $GITHUB_SHA || true
|
|
gh release upload $GITHUB_REF_NAME --clobber ooni-probe-cli-*.tar.gz
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|