alterware-launcher/.github/workflows/release.yml

39 lines
918 B
YAML
Raw Normal View History

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:
- uses: actions/checkout@v2
- 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: i686-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:
- uses: actions/checkout@v2
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: alterware-launcher
tar: unix
zip: windows
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}