mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-09 00:16:46 +00:00
26 lines
531 B
YAML
26 lines
531 B
YAML
name: publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 1
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.20.x
|
|
- name: Make publish
|
|
run: make publish
|
|
- name: Upload release binaries
|
|
uses: alexellis/upload-assets@0.4.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|
|
with:
|
|
asset_paths: '["./bin/faasd*"]' |