Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a github action to release artifacts at runtime #78

Closed
Prev Previous commit
Next Next commit
testing
  • Loading branch information
devashish2024 committed Sep 15, 2024
commit ea3e4168881472cfe1b0059cbeea41fb478a1772
9 changes: 5 additions & 4 deletions .github/workflows/produceJars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,11 @@ jobs:

- name: Update Gradle Properties
run: |
echo "minecraft_version=${{ matrix.version-config.minecraft_version }}" > gradle.properties
echo "yarn_mappings=${{ matrix.version-config.yarn_mappings }}" >> gradle.properties
echo "loader_version=${{ matrix.version-config.loader_version }}" >> gradle.properties
echo "fabric_version=${{ matrix.version-config.fabric_version }}" >> gradle.properties
echo "minecraft_version=${{ matrix.minecraft_version }}" >> gradle.properties
echo "yarn_mappings=${{ matrix.yarn_mappings }}" >> gradle.properties
echo "loader_version=${{ matrix.loader_version }}" >> gradle.properties
echo "fabric_version=${{ matrix.fabric_version }}" >> gradle.properties
cat gradle.properites

- name: Migrate Mappings
run: ./gradlew migrateMappings --mappings "${{ matrix.version-config.yarn_mappings }}"
Expand Down