2
0
mirror of https://github.com/Revertron/Alfis synced 2024-11-03 15:40:19 +00:00
Alfis/.github/workflows/rust_create_release.yml

73 lines
2.2 KiB
YAML
Raw Normal View History

2021-02-23 00:48:32 +00:00
on:
workflow_dispatch:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CARGO_TERM_COLOR: always
name: Create release
jobs:
make_release:
name: Create Release
runs-on: ubuntu-latest
2021-02-23 09:44:20 +00:00
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
2021-02-23 00:48:32 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Test version ${{ github.ref }}
body: |
Changes in this version
To be written by maintainer.
draft: true
prerelease: true
2021-02-23 10:56:58 +00:00
- name: Output URL
run: echo "URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV
2021-02-23 00:48:32 +00:00
2021-02-23 09:44:20 +00:00
upload:
name: Create and upload builds
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest, ubuntu-latest, macOS-latest]
2021-02-23 01:06:35 +00:00
defaults:
run:
shell: bash
2021-02-23 00:48:32 +00:00
steps:
- name: Checkout code
uses: actions/checkout@v2
2021-02-23 09:55:47 +00:00
- name: install libgtk-dev libwebkit2gtk-4.0
run: sudo apt update && sudo apt install libwebkit2gtk-4.0-dev
if: contains(matrix.os, 'ubuntu')
2021-02-23 00:48:32 +00:00
- name: Build release binary
run: |
2021-02-23 09:44:20 +00:00
cargo build --release
- name: Fill variables
run: |
2021-02-23 10:30:29 +00:00
echo "BIN_PATH=./target/release/alfis" >> $GITHUB_ENV
2021-02-23 10:35:57 +00:00
echo "BIN_NAME=alfis_${GITHUB_REF##*/}.bin" >> $GITHUB_ENV
2021-02-23 09:44:20 +00:00
- name: Windows variables
if: contains(matrix.os, 'windows')
run: |
2021-02-23 10:30:29 +00:00
echo "BIN_PATH=./target/release/alfis.exe" >> $GITHUB_ENV
2021-02-23 10:35:57 +00:00
echo "BIN_NAME=alfis_${GITHUB_REF##*/}.exe" >> $GITHUB_ENV
2021-02-23 09:44:20 +00:00
- name: Upload binary
id: upload-binary
2021-02-23 00:48:32 +00:00
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
2021-02-23 10:56:58 +00:00
upload_url: ${{ env.URL }}
2021-02-23 10:30:29 +00:00
asset_path: ${{ env.BIN_PATH }}
asset_name: ${{ env.BIN_NAME }}
2021-02-23 00:48:32 +00:00
asset_content_type: application/octet-stream