2023-06-10 03:43:54 -04:00
|
|
|
name: Release
|
2023-06-10 03:33:16 -04:00
|
|
|
|
|
|
|
on:
|
2023-06-10 03:43:54 -04:00
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v[0-9]+.*
|
|
|
|
|
2023-06-10 03:33:16 -04:00
|
|
|
jobs:
|
2023-06-10 03:43:54 -04:00
|
|
|
create-release:
|
|
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
2023-10-16 10:11:56 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-10 03:43:54 -04:00
|
|
|
- uses: taiki-e/create-gh-release-action@v1
|
2023-08-16 07:01:25 -04:00
|
|
|
with:
|
|
|
|
draft: true
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2023-06-10 03:43:54 -04:00
|
|
|
|
|
|
|
upload-assets:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-09-25 12:51:43 -04:00
|
|
|
include:
|
|
|
|
- target: x86_64-unknown-linux-gnu
|
|
|
|
os: ubuntu-20.04
|
|
|
|
- target: x86_64-pc-windows-msvc
|
|
|
|
os: windows-latest
|
|
|
|
- target: i686-pc-windows-msvc
|
|
|
|
os: windows-latest
|
2023-06-10 03:43:54 -04:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2023-10-16 10:11:56 -04:00
|
|
|
- uses: actions/checkout@v4
|
2023-06-10 03:43:54 -04:00
|
|
|
- uses: taiki-e/upload-rust-binary-action@v1
|
|
|
|
with:
|
2023-09-25 12:57:51 -04:00
|
|
|
target: ${{ matrix.target }}
|
2023-06-10 03:43:54 -04:00
|
|
|
bin: alterware-launcher
|
|
|
|
tar: unix
|
|
|
|
zip: windows
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|