mirror of
https://github.com/XLabsProject/iw4x-rawfiles.git
synced 2023-08-02 15:02:11 +02:00
21 lines
470 B
YAML
21 lines
470 B
YAML
name: Release
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
jobs:
|
|
create_release:
|
|
name: Create GitHub Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
- run: 'bash ${GITHUB_WORKSPACE}/scripts/release.sh'
|
|
- uses: marvinpinto/action-automatic-releases@latest
|
|
with:
|
|
repo_token: '${{ secrets.GITHUB_TOKEN }}'
|
|
prerelease: false
|
|
files: |
|
|
release.zip
|