summaryrefslogtreecommitdiffstats
path: root/.github/workflows/deployment.yml
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-01-19 20:45:20 -0800
committerGitHub <noreply@github.com>2022-01-19 23:45:20 -0500
commit3529e484cc9319de9e9295902bc8737a18aba6f7 (patch)
tree07d213848bccc5c1e98ccd62ac8a1b7479fe6348 /.github/workflows/deployment.yml
parent398d52af2e6b001256adef71be8e7c85a943066c (diff)
ci: remove winget step (#660)
Removes the winget step from the deployment pipeline; it seems like a bot now manages winget deployments for bottom, which is nice.
Diffstat (limited to '.github/workflows/deployment.yml')
-rw-r--r--.github/workflows/deployment.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml
index e28085b1..5e74db53 100644
--- a/.github/workflows/deployment.yml
+++ b/.github/workflows/deployment.yml
@@ -1,4 +1,4 @@
-# How we deploy a release. Covers binary builds. Also manages packaging for winget and choco.
+# How we deploy a release. Covers binary builds. Also manages packaging for choco.
#
# Based on https://github.com/BurntSushi/ripgrep/blob/master/.github/workflows/release.yml
@@ -266,18 +266,11 @@ jobs:
cargo wix init
cargo wix
- - name: Build winget
- run: |
- python "./deployment/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/windows/winget/winget.yaml.template" "Clement.bottom.yaml" "SHA256" "./bottom_x86_64_installer.msi"
- $Code = powershell ./deployment/windows/winget/get_product_code.ps1 ./bottom_x86_64_installer.msi
- python "./deployment/windows/winget/product_code.py" Clement.bottom.yaml $Code
-
- name: Create release directory for artifact, move files
shell: bash
run: |
mkdir release
mv bottom_x86_64_installer.msi release/
- mv Clement.bottom.yaml release/
- name: Save release as artifact
uses: actions/upload-artifact@v2