Merge pull request #490 from pylonmc/vaan/fix/translate-item-trades #62
Workflow file for this run
This file contains hidden or 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
| name: Create GitHub Release | |
| on: | |
| push: | |
| tags: ['*'] | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/gradle.yml | |
| with: | |
| version: ${{ github.ref_name }} | |
| github-release: | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Download Pylon | |
| uses: actions/download-artifact@v4.1.8 | |
| with: | |
| name: pylon-core-${{ github.ref_name }} | |
| - name: Create Release | |
| uses: marvinpinto/action-automatic-releases@latest | |
| with: | |
| repo_token: ${{ secrets.ACCESS_TOKEN }} | |
| draft: false | |
| prerelease: false | |
| automatic_release_tag: ${{ github.ref_name }} | |
| title: Release ${{ github.ref_name }} | |
| files: pylon-core-*.jar |