Update README #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build mod zip | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
upload-zip: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Create folder | |
run: | | |
mkdir -p Dinorush.Brute4_ && cp -R mods/ icon.png LICENSE manifest.json README.md Dinorush.Brute4_/ | |
- name: Prepare image tag | |
run: | | |
echo IMAGE_TAG=$(echo ${{ github.ref }} | tr '[:upper:]' '[:lower:]' | awk '{split($0,a,"/"); print a[3]}') >> $GITHUB_ENV | |
- uses: vimtor/action-zip@v1 | |
with: | |
files: ./Dinorush.Brute4_ | |
dest: ./Dinorush.Brute4_${{ env.IMAGE_TAG }}.zip | |
- name: Attach the mod to the release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ./Dinorush.Brute4_${{ env.IMAGE_TAG }}.zip | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |