Skip to content

Delete data/c/tags/items/steel_plates.json #50

Delete data/c/tags/items/steel_plates.json

Delete data/c/tags/items/steel_plates.json #50

Workflow file for this run

name: Create Archive
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Bump version and push tag
id: bump
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: patch
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: "zip"
filename: "Brassburg-${{ steps.bump.outputs.new_tag }}.zip"
exclusions: "*.git*"
- name: Upload to GitHub
uses: ncipollo/[email protected]
with:
artifacts: "Brassburg-${{ steps.bump.outputs.new_tag }}.zip"
artifactErrorsFailBuild: true
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.bump.outputs.new_tag }}
name: ${{ steps.bump.outputs.new_tag }}
body: ${{ steps.bump.outputs.changelog }}
commit: ${{ github.sha }}