switch nixpkgs input to 26.05 #63
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: | |
| - "*" | |
| jobs: | |
| build: | |
| name: Build 🛠️ | |
| uses: ./.github/workflows/run_build.yml | |
| release: | |
| needs: | |
| - build | |
| name: Create Release 📢 | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Download x86_64 Tarball 📥 | |
| uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | |
| with: | |
| name: tarball-x86_64 | |
| - name: Download aarch64 Tarball 📥 | |
| uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 | |
| with: | |
| name: tarball-aarch64 | |
| - name: Generate Checksums 🔑 | |
| run: | | |
| sha256sum nixos.wsl > nixos.wsl.sha256 | |
| sha256sum nixos.aarch64.wsl > nixos.aarch64.wsl.sha256 | |
| - name: Attach to Release 📎 | |
| uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda # v3.0.0 | |
| with: | |
| files: | | |
| nixos.wsl | |
| nixos.wsl.sha256 | |
| nixos.aarch64.wsl | |
| nixos.aarch64.wsl.sha256 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |