Add tag removal + replace Kube stone hammer with GT stone hammer #246
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: Latest Build | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- run : | | |
chmod +x ./packwiz | |
- run: | | |
./packwiz cf export -o GBTH.zip | |
- name: Upload Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: latest-dev | |
files: GBTH.zip | |
prerelease: true | |
generate_release_notes: true |