build(deps): bump actions/upload-artifact from 4.5.0 to 4.6.0 #136
Workflow file for this run
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
# In-Game Account Switcher is a mod for Minecraft that allows you to change your logged in account in-game, without restarting Minecraft. | |
# Copyright (C) 2015-2022 The_Fireplace | |
# Copyright (C) 2021-2024 VidTu | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU Lesser General Public License for more details. | |
# | |
# You should have received a copy of the GNU Lesser General Public License | |
# along with this program. If not, see <https://www.gnu.org/licenses/> | |
name: 'Build' | |
on: [ pull_request, push, workflow_dispatch ] | |
jobs: | |
build: | |
name: 'Build' | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 60 | |
steps: | |
- name: 'Checkout' | |
timeout-minutes: 1 | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: 'Setup JDK' | |
timeout-minutes: 1 | |
uses: actions/setup-java@7a6d8a8234af8eb26422e24e3006232cccaa061b # v4.6.0 | |
with: | |
java-version: 21 | |
distribution: 'jetbrains' | |
- name: 'Setup Gradle' | |
timeout-minutes: 10 | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4.2.2 | |
- name: 'Build' | |
timeout-minutes: 50 | |
run: './gradlew build' | |
- name: 'Upload' | |
timeout-minutes: 5 | |
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 | |
with: | |
name: 'Artifacts' | |
path: | | |
1.18.2/fabric/build/libs/ | |
1.18.2/quilt/build/libs/ | |
1.18.2/forge/build/libs/ | |
1.18.2/neoforge/build/libs/ | |
1.19.2/fabric/build/libs/ | |
1.19.2/quilt/build/libs/ | |
1.19.2/forge/build/libs/ | |
1.19.2/neoforge/build/libs/ | |
1.19.4/fabric/build/libs/ | |
1.19.4/quilt/build/libs/ | |
1.19.4/forge/build/libs/ | |
1.19.4/neoforge/build/libs/ | |
1.20.1/fabric/build/libs/ | |
1.20.1/quilt/build/libs/ | |
1.20.1/forge/build/libs/ | |
1.20.1/neoforge/build/libs/ | |
1.20.2/fabric/build/libs/ | |
1.20.2/quilt/build/libs/ | |
1.20.2/forge/build/libs/ | |
1.20.2/neoforge/build/libs/ | |
1.20.4/fabric/build/libs/ | |
1.20.4/quilt/build/libs/ | |
1.20.4/forge/build/libs/ | |
1.20.4/neoforge/build/libs/ | |
1.20.6/fabric/build/libs/ | |
1.20.6/quilt/build/libs/ | |
1.20.6/forge/build/libs/ | |
1.20.6/neoforge/build/libs/ | |
1.21.1/fabric/build/libs/ | |
1.21.1/quilt/build/libs/ | |
1.21.1/forge/build/libs/ | |
1.21.1/neoforge/build/libs/ | |
1.21.3/fabric/build/libs/ | |
1.21.3/quilt/build/libs/ | |
1.21.3/forge/build/libs/ | |
1.21.3/neoforge/build/libs/ | |
1.21.4/fabric/build/libs/ | |
1.21.4/quilt/build/libs/ | |
1.21.4/forge/build/libs/ | |
1.21.4/neoforge/build/libs/ |