Skip to content

fix: change wrong username #1

fix: change wrong username

fix: change wrong username #1

Workflow file for this run

name: "Release"
on:
push:
tags: []
jobs:
build:
name: Build πŸ› οΈ
uses: ./.github/workflows/run_build.yml
package:
name: Package πŸ“¦
uses: ./.github/workflows/run_package.yml
needs:
- build
secrets:
APPX_SIGNING_CERT: ${{ secrets.APPX_SIGNING_CERT }}
CERT_ALGORITHM: ${{ secrets.CERT_ALGORITHM }}
release:
needs:
- build
- package
name: Create Release πŸ“’
runs-on: ubuntu-latest
steps:
- name: Download Tarball πŸ“₯
uses: actions/download-artifact@v4
with:
name: tarball
- name: Download msix πŸ“₯
uses: actions/download-artifact@v4
with:
name: launcher-msix
- name: Rename msix ✏️
run: mv */*.msixbundle NixOS-WSL-Launcher.msixbundle
- name: Download bundle
uses: actions/download-artifact@v4
with:
name: launcher-bundle
path: launcher-bundle
- name: Zip launcher bundle πŸ“¦
working-directory: launcher-bundle
run: zip -r ../NixOS-WSL-Launcher.zip .
- name: Generate Checksums πŸ”‘
run: |
for x in *.{tar.gz,msixbundle,zip}; do
sha256sum $x > ${x}.sha256
done
- name: Attach to Release πŸ“Ž
uses: softprops/action-gh-release@v2
with:
files: |
elmer-wsl.tar.gz
elmer-wsl.tar.gz.sha256
NixOS-WSL-Launcher.zip
NixOS-WSL-Launcher.zip.sha256
NixOS-WSL-Launcher.msixbundle
NixOS-WSL-Launcher.msixbundle.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}