Skip to content

v1.4.0:

v1.4.0: #10

Workflow file for this run

name: Go
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- '*-release' # Push events to matching v*, i.e. v1.0, v20.15.10
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: go build -v .
- name: Upload binary
uses: actions/upload-artifact@v1
with:
name: roly-poly-vpn
path: roly-poly-vpn
publish:
name: Publish
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Download binary
uses: actions/download-artifact@v1
with:
name: roly-poly-vpn
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./roly-poly-vpn/roly-poly-vpn
asset_name: roly-poly-vpn
asset_content_type: application/x-executable