Skip to content

chore(deps): update actions/download-artifact action to v5 #51

chore(deps): update actions/download-artifact action to v5

chore(deps): update actions/download-artifact action to v5 #51

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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5
with:
name: tarball
- name: Generate Checksums 🔑
run: |
sha256sum nixos.wsl > nixos.wsl.sha256
- name: Attach to Release 📎
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2
with:
files: |
nixos.wsl
nixos.wsl.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}