mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-22 02:50:19 +00:00
fix release and test
This commit is contained in:
parent
30599931bc
commit
7844a79009
3 changed files with 10 additions and 24 deletions
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
|
@ -44,7 +44,7 @@ jobs:
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v20
|
uses: cachix/install-nix-action@v20
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-22.11
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
- uses: cachix/cachix-action@v12
|
- uses: cachix/cachix-action@v12
|
||||||
|
@ -63,7 +63,7 @@ jobs:
|
||||||
nix run .#${{ matrix.target }} completion fish > ./completions/himalaya.fish
|
nix run .#${{ matrix.target }} completion fish > ./completions/himalaya.fish
|
||||||
nix run .#${{ matrix.target }} completion powershell > ./completions/himalaya.powershell
|
nix run .#${{ matrix.target }} completion powershell > ./completions/himalaya.powershell
|
||||||
nix run .#${{ matrix.target }} completion zsh > ./completions/himalaya.zsh
|
nix run .#${{ matrix.target }} completion zsh > ./completions/himalaya.zsh
|
||||||
tar -czf himalaya.tar.gz himalaya* man completions
|
tar -czf himalaya.tgz himalaya* man completions
|
||||||
zip -r himalaya.zip himalaya* man completions
|
zip -r himalaya.zip himalaya* man completions
|
||||||
- name: Upload tar.gz release asset
|
- name: Upload tar.gz release asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
|
@ -71,8 +71,8 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ needs.create_release.outputs.upload_url }}
|
upload_url: ${{ needs.create_release.outputs.upload_url }}
|
||||||
asset_path: himalaya.tar.gz
|
asset_path: himalaya.tgz
|
||||||
asset_name: himalaya-${{ matrix.target }}.tar.gz
|
asset_name: himalaya-${{ matrix.target }}.tgz
|
||||||
asset_content_type: application/gzip
|
asset_content_type: application/gzip
|
||||||
- name: Upload zip release asset
|
- name: Upload zip release asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
|
@ -111,16 +111,16 @@ jobs:
|
||||||
./himalaya.exe completion fish > ./completions/himalaya.fish
|
./himalaya.exe completion fish > ./completions/himalaya.fish
|
||||||
./himalaya.exe completion powershell > ./completions/himalaya.powershell
|
./himalaya.exe completion powershell > ./completions/himalaya.powershell
|
||||||
./himalaya.exe completion zsh > ./completions/himalaya.zsh
|
./himalaya.exe completion zsh > ./completions/himalaya.zsh
|
||||||
tar -czf himalaya.tar.gz himalaya.exe man completions
|
tar -czf himalaya.tgz himalaya.exe man completions
|
||||||
tar -czf himalaya.zip himalaya.exe man completions
|
Compress-Archive -Path himalaya.exe,man,completions -DestinationPath himalaya.zip
|
||||||
- name: Upload tar.gz release asset
|
- name: Upload tar.gz release asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ needs.create_release.outputs.upload_url }}
|
upload_url: ${{ needs.create_release.outputs.upload_url }}
|
||||||
asset_path: himalaya.tar.gz
|
asset_path: himalaya.tgz
|
||||||
asset_name: himalaya-windows.tar.gz
|
asset_name: himalaya-windows.tgz
|
||||||
asset_content_type: application/gzip
|
asset_content_type: application/gzip
|
||||||
- name: Upload zip release asset
|
- name: Upload zip release asset
|
||||||
uses: actions/upload-release-asset@v1
|
uses: actions/upload-release-asset@v1
|
||||||
|
@ -141,7 +141,7 @@ jobs:
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v20
|
uses: cachix/install-nix-action@v20
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-22.11
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
- name: Publish library to crates.io
|
- name: Publish library to crates.io
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v20
|
uses: cachix/install-nix-action@v20
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-22.11
|
||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
- uses: cachix/cachix-action@v12
|
- uses: cachix/cachix-action@v12
|
||||||
|
|
14
.github/workflows/zip.yml
vendored
14
.github/workflows/zip.yml
vendored
|
@ -1,14 +0,0 @@
|
||||||
name: zip
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy_windows_github:
|
|
||||||
runs-on: windows-latest
|
|
||||||
steps:
|
|
||||||
- name: Test zip
|
|
||||||
run: |
|
|
||||||
mkdir man
|
|
||||||
mkdir completions
|
|
||||||
Compress-Archive -Path man,completions -DestinationPath himalaya.zip
|
|
Loading…
Reference in a new issue