changed publish action to only publish to modrinth
Some checks failed
Upload .zip file / Upload .zip file (push) Successful in 6s
Publish to CoastalCommits and Modrinth / Build and Publish (release) Failing after 5s

This commit is contained in:
Seaswimmer 2024-07-24 08:53:28 -04:00
parent a5e9d0db37
commit 22e3d793db
Signed by: cswimr
GPG key ID: 3813315477F26F82

View file

@ -1,8 +1,7 @@
name: Publish to CoastalCommits and Modrinth name: Publish to CoastalCommits and Modrinth
on: on:
push: release:
tags: types: [published]
- '*'
jobs: jobs:
Build and Publish: Build and Publish:
@ -14,33 +13,17 @@ jobs:
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Set environment variables
uses: actions/env@v2
- name: Set up Go
uses: actions/go@v2
with:
go-version: '>=1.20.1'
- name: ZIP the datapack - name: ZIP the datapack
run: | run: |
zip -r BetterCombatCompat-$CI_REF_NAME.zip data pack.mcmeta pack.png LICENSE README.md zip -r BetterCombatCompat-${{ github.event.release.tag_name }}.zip data pack.mcmeta pack.png LICENSE README.md
- name: Release to CoastalCommits
uses: actions/release@main
with:
name: BetterCombatCompat-$CI_REF_NAME
files: |-
BetterCombatCompat-$CI_REF_NAME.zip
api_key: ${{ secrets.COASTALCOMMITSTOKEN }}
- name: Publish to Modrinth - name: Publish to Modrinth
uses: actions/modrinth-publish@1.0.0 uses: actions/modrinth-publish@1.0.0
with: with:
token: ${{ secrets.MODRINTH_STAGING_RELEASE_TOKEN }} token: ${{ secrets.MODRINTH_STAGING_RELEASE_TOKEN }}
project: ${{ vars.MODRINTH_PROJECT_ID }} project: ${{ vars.MODRINTH_PROJECT_ID }}
changelog: ${{ github.event.head_commit.message }} changelog: ${{ github.event.release.body }}
loaders: 'datapack' loaders: 'datapack'
file: BetterCombatCompat-$CI_REF_NAME.zip file: BetterCombatCompat-${{ github.event.release.tag_name }}.zip
dependencies: "[{'project_id': `5sy6g3kz`, 'dependency_type': 'required'}]" dependencies: "[{'project_id': `5sy6g3kz`, 'dependency_type': 'required'}]"
api-domain: 'staging-api.modrinth.com' api-domain: 'staging-api.modrinth.com'