add an ability to copy decal settings and use them as defaults #11
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: Pack addon | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: ['v*'] | |
| jobs: | |
| pack: | |
| name: Pack addon | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Prepare addon | |
| shell: bash | |
| run: | | |
| ADDON_NAME='splasher' | |
| ADDON_FOLDER="${{ github.workspace }}/addons/${ADDON_NAME}/" | |
| cp --no-clobber '${{ github.workspace }}/README.md' '${{ github.workspace }}/LICENSE' "${ADDON_FOLDER}" | |
| - name: Pack files into a .zip | |
| shell: bash | |
| run: | | |
| ADDON_NAME='splasher' | |
| ADDON_ZIP="${{ github.workspace }}/${ADDON_NAME}.zip" | |
| cd "${{ github.workspace }}/addons" | |
| zip -r "${ADDON_ZIP}" "${ADDON_NAME}/" | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: "splasher" | |
| path: ${{ github.workspace }}/splasher.zip | |
| retention-days: 30 | |
| release: | |
| needs: pack | |
| name: Release addon | |
| runs-on: ubuntu-latest | |
| if: github.ref_type == 'tag' | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: "splasher" | |
| path: dist/ | |
| - name: Create release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: dist/** | |
| generate_release_notes: true |