Skip to content

hemtt delete

hemtt delete #1

Workflow file for this run

name: Steam_Upload/Main_Release
on:
push:
tags:
- 'v*.*.*'
jobs:
build_addon:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set VERSION env
run: echo VERSION=${GITHUB_REF:11} >> $GITHUB_ENV
- name: Build addon with HEMTT
uses: arma-actions/hemtt@master
with:
command: 'build --release'
# Upload to Steam Workshop
- uses: arma-actions/workshop-upload@v1
with:
appId: '107410' # default
itemId: '2403978406' # Id of item to update
contentPath: 'releases/${{ env.VERSION }}/@Hatchet Framework - Test Version'
changelog: 'Content of change notes'
env:
STEAM_USERNAME: ${{ secrets.STEAM_USERNAME }}
STEAM_PASSWORD: ${{ secrets.STEAM_PASSWORD }}