Release #13
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: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tags: | |
| description: 'The tag to upload the build for' | |
| required: false | |
| type: string | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| name: Build for ${{ matrix.destination.name }} | |
| runs-on: ${{ matrix.destination.os }} | |
| strategy: | |
| matrix: | |
| destination: | |
| # - Swiftly is failing to install these so commenting out for now | |
| # - { name: "ubuntu-aarch64", os: ubuntu-22.04-arm } | |
| # - { name: "ubuntu-x86_64", os: ubuntu-22.04 } | |
| - { name: "macos-universal", os: macos-15 } | |
| steps: | |
| - if: startsWith(matrix.destination.name, 'ubuntu') | |
| uses: vapor/[email protected] | |
| with: | |
| toolchain: 6.1.0 | |
| - if: startsWith(matrix.destination.name, 'macos') | |
| run: sudo xcode-select -s /Applications/Xcode_16.4.app | |
| - uses: actions/checkout@v4 | |
| - name: Create the binary | |
| run: make release OUTPUT_NAME=puresql.${{ matrix.destination.name }}.tar.gz | |
| - name: Upload the binary | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: puresql.${{ matrix.destination.name }}.tar.gz | |
| path: puresql.${{ matrix.destination.name }}.tar.gz | |
| deploy-binary: | |
| # if: ${{ github.event_name == 'release' }} | |
| needs: [build] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| merge-multiple: true | |
| - name: Deploy the binary | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ inputs.tag || github.ref_name }} | |
| files: | | |
| puresql.ubuntu-x86_64.tar.gz | |
| puresql.ubuntu-aarch64.tar.gz | |
| puresql.macos-universal.tar.gz | |
| puresql.artifactbundle.zip |