4.2.7.1 #6
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: tagged-release | |
on: | |
push: | |
tags: | |
- "v*" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
tagged-release: | |
name: Tagged Release | |
runs-on: windows-latest | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
- name: Setup HEMTT | |
uses: arma-actions/hemtt@v1 | |
- name: Checkout pull request | |
uses: actions/checkout@v4 | |
if: ${{ github.event_name == 'pull_request_target' }} | |
with: | |
path: pullrequest | |
ref: 'refs/pull/${{ github.event.number }}/merge' | |
- name: Replace addons with pull request addons | |
if: ${{ github.event_name == 'pull_request_target' }} | |
run: | | |
rm -r addons\ | |
rm -r include\ | |
xcopy /e /h /q pullrequest\addons addons\ | |
xcopy /e /h /q pullrequest\include include\ | |
- name: Run HEMTT release | |
run: hemtt release | |
- name: Remove 'latest' zip | |
run: del releases\*latest.zip | |
- name: Create release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "${{ github.ref_name }}" | |
prerelease: false | |
files: releases\ |