mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2024-11-05 13:14:48 +01:00
28 lines
566 B
YAML
28 lines
566 B
YAML
name: Main
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*.*.*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: '^1.16.3'
|
|
- name: Build
|
|
run: go run build/build.go
|
|
|
|
- name: Sign
|
|
uses: tristan-weil/ghaction-checksum-sign-artifact@v1.0.1
|
|
with:
|
|
path: dist/*
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
files: dist/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |