Skip to content

feat(Electric Spawners): add new textures (#99) #37

feat(Electric Spawners): add new textures (#99)

feat(Electric Spawners): add new textures (#99) #37

Workflow file for this run

name: Release | Beta Pack
on:
workflow_dispatch:
inputs:
debug:
description: "Generate debug log"
required: false
default: false
type: boolean
push:
branches:
- main
paths:
- Resourcepack/**
jobs:
version-gen:
name: Version Generator
uses: ./.github/workflows/resuable_version.yml
if: |
github.repository == 'xMikux/Slimefun-Resourcepack'
with:
release_type: "beta"
config-upload:
name: Upload Item Models
uses: ./.github/workflows/resuable_configs.yml
if: |
github.repository == 'xMikux/Slimefun-Resourcepack'
ia-packer:
name: IA Packer
needs: [ version-gen ]
uses: ./.github/workflows/resuable_ia.yml
with:
debug: ${{ inputs.debug || false }}
pack_format_version_str: ${{ needs.version-gen.outputs.pack_version_name }}
secrets:
RCON_PASSWORD: ${{ secrets.RCON_PASSWORD }}
S3_ACCESS_KEY: ${{ secrets.S3_ACCESS_KEY }}
S3_SECRET_KEY: ${{ secrets.S3_SECRET_KEY }}
S3_BUCKET_NAME: ${{ secrets.S3_BUCKET_NAME }}
res-packer:
name: Slimefun Packer
needs: [ ia-packer ]
uses: ./.github/workflows/resuable_packer.yml
res-publish-modrinth:
name: Publish Modrinth Beta
needs: [ version-gen, config-upload, res-packer ]
uses: ./.github/workflows/resuable_release_modrinth.yml
with:
version: ${{ needs.version-gen.outputs.version_sha_name }}
release_type: beta
secrets:
MODRINTH_TOKEN: ${{ secrets.MODRINTH_TOKEN }}