Bump version in Nix package (#59) #7
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: Release | |
| on: | |
| push: | |
| tags: ["v*.*.*"] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| publish: | |
| name: Publish to crates.io | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Publish | |
| env: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
| run: cargo publish | |
| build-assets: | |
| name: Build (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: | |
| - macOS-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: mkdir dist | |
| - name: Build | |
| run: cargo build --release | |
| - name: Prepare for upload (Unix) | |
| if: ${{ runner.os != 'Windows' }} | |
| env: | |
| BUILD_TARGET: ${{ runner.os }}-${{ runner.arch }} | |
| run: | | |
| tar -C target/release/ -czvf "fancy-tree-$BUILD_TARGET.tar.gz" fancy-tree | |
| mv "fancy-tree-$BUILD_TARGET.tar.gz" dist/ | |
| - name: Prepare for upload (Windows) | |
| if: ${{ runner.os == 'Windows' }} | |
| env: | |
| BUILD_TARGET: ${{ runner.os }}-${{ runner.arch }} | |
| shell: bash | |
| # NOTE -mx9 is max compression, -tzip sets type to zip | |
| run: | | |
| mv target/release/fancy-tree.exe fancy-tree.exe | |
| 7z a -mx9 -tzip "fancy-tree-$BUILD_TARGET.zip" fancy-tree.exe | |
| mv "fancy-tree-$BUILD_TARGET.zip" dist/ | |
| - uses: actions/upload-artifact@v6 | |
| id: upload-artifact | |
| with: | |
| name: ${{ runner.os }}-${{ runner.arch }} | |
| path: dist/* | |
| if-no-files-found: error | |
| - run: echo "Uploaded artifact to ${{ steps.upload-artifact.outputs.artifact-url }}" | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| needs: build-assets | |
| permissions: | |
| contents: write | |
| if: ${{ github.event_name != 'workflow_dispatch' }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/download-artifact@v7 | |
| id: download-artifact | |
| with: | |
| path: dist/ | |
| merge-multiple: true | |
| - name: Release | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| RELEASE_TAG: ${{ github.ref_name }} | |
| RELEASE_ASSETS: ${{ steps.download-artifact.outputs.download-path }}/* | |
| run: gh release create --draft --generate-notes "$RELEASE_TAG" "$RELEASE_ASSETS" |