Skip to content

switch nixpkgs input to 25.11 #62

switch nixpkgs input to 25.11

switch nixpkgs input to 25.11 #62

Workflow file for this run

name: "Release"
on:
push:
tags:
- "*"
jobs:
build:
name: Build 🛠️
uses: ./.github/workflows/run_build.yml
release:
needs:
- build
name: Create Release 📢
runs-on: ubuntu-latest
steps:
- name: Download Tarball 📥
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
with:
name: tarball
- name: Generate Checksums 🔑
run: |
sha256sum nixos.wsl > nixos.wsl.sha256
- name: Attach to Release 📎
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090 # v2.4.1
with:
files: |
nixos.wsl
nixos.wsl.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}