Skip to content

What would be the ideal setup for my multi-platform project? #29

Answered by Kir-Antipov
Andre601 asked this question in Q&A
Discussion options

You must be logged in to vote

You can view your uploads as different versions of your plugin (because technically they are different versions), therefore, taking into consideration the fact that mc-publish is able to publish one version to one platform at a time, since I do not want to turn it into a LHC control panel, you need 4 calls to mc-publish (or 5, if you want to publish files to GitHub in batch, as you're doing right now).

Considering all of the above, I would suggest you to replace your existing configuration with something like this:

name: Build Jars

on:
  release:
    types: [published]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3

    - name: Set up JDK 1.16
      u…

Replies: 6 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by Kir-Antipov
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@Kir-Antipov
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #20 on September 06, 2022 17:30.