feat: Add action to create GitHub release

This commit is contained in:
Rostislav Raykov 2019-09-18 01:27:21 +02:00
parent 382a973e14
commit ef18de474d

40
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,40 @@
on:
push:
tags:
- '*.*.*'
name: Create a GitHub release
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Cargo build
uses: actions-rs/cargo@v1
with:
toolchain: nightly
command: build
arguments: --release
- name: Extract version
id: version
uses: actions/github-script@0.2.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
return context.payload.ref.replace(/\/refs\/tags\//, '');
- name: Archive
run: tar cfJ cloudflare-ddns-${{ steps.version.outputs.result }}.tar.xz target/cloudflare-ddns
- name: Create release
uses: softprops/action-gh-release@v1
with:
files: |
cloudflare-ddns-${{ steps.version.outputs.result }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}