Skip to content

Included Blockrender6343 .lang file and updated workflow #27

Included Blockrender6343 .lang file and updated workflow

Included Blockrender6343 .lang file and updated workflow #27

Workflow file for this run

name: Create Zip Release On Tag Push
on:
push:
tags:
- v[0-9]+.[0-9]+.[0-9]+
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@master
- name: Archive Release
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Scuffed-GTNH-Dark-${{ github.ref_name }}.zip'
exclusions: >
*.git*
*.psd
/*designHelp/*
/*psd/*
/*assets/architecturecraft/*
/*assets/avaritia/*
/*assets/avaritiaddons/*
/*assets/battlegear2/*
/*assets/baubles/*
/*assets/betterp2p/*
/*assets/chisel/*
/*assets/mobsinfo/*
- name: Generate Changelog
id: changelog
uses: requarks/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
includeInvalidCommits: true
reverseOrder: true
excludeTypes: ''
- name: Create Release
uses: ncipollo/[email protected]
with:
artifacts: "Scuffed-GTNH-Dark-${{ github.ref_name }}.zip"
token: ${{ secrets.GITHUB_TOKEN }}
body: ${{ steps.changelog.outputs.changes }}
allowUpdates: true
removeArtifacts: true