diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 572ff380390cc..e49a7690603b0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -479,66 +479,3 @@ jobs: # For gh CLI. We need a real token since we're commenting on a PR in a # different repo. GH_TOKEN: ${{ secrets.CDRCI_GITHUB_TOKEN }} - - publish-chocolatey: - name: Publish to Chocolatey - runs-on: windows-latest - needs: release - if: ${{ !inputs.dry_run }} - - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - # Same reason as for release. - - name: Fetch git tags - run: git fetch --tags --force - - # From https://chocolatey.org - - name: Install Chocolatey - run: | - Set-ExecutionPolicy Bypass -Scope Process -Force - [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072 - - iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) - - - name: Build chocolatey package - run: | - cd scripts/chocolatey - - # The package version is the same as the tag minus the leading "v". - # The version in this output already has the leading "v" removed but - # we do it again to be safe. - $version = "${{ needs.release.outputs.version }}".Trim('v') - - $release_assets = gh release view --repo coder/coder "v${version}" --json assets | ` - ConvertFrom-Json - - # Get the URL for the Windows ZIP from the release assets. - $zip_url = $release_assets.assets | ` - Where-Object name -Match ".*_windows_amd64.zip$" | ` - Select -ExpandProperty url - - echo "ZIP URL: ${zip_url}" - echo "Package version: ${version}" - - echo "Downloading ZIP..." - Invoke-WebRequest $zip_url -OutFile assets.zip - - echo "Extracting ZIP..." - Expand-Archive assets.zip -DestinationPath assets/ - - # No need to specify nuspec if there's only one in the directory. - choco pack --version=$version binary_path=assets/coder.exe - - choco apikey --api-key $env:CHOCO_API_KEY --source https://push.chocolatey.org/ - - # No need to specify nupkg if there's only one in the directory. - choco push --source https://push.chocolatey.org/ - - env: - CHOCO_API_KEY: ${{ secrets.CHOCO_API_KEY }} - # We need a GitHub token for the gh CLI to function under GitHub Actions - GH_TOKEN: ${{ secrets.CDRCI_GITHUB_TOKEN }} diff --git a/scripts/chocolatey/coder.nuspec b/scripts/chocolatey/coder.nuspec deleted file mode 100644 index 65751f257e436..0000000000000 --- a/scripts/chocolatey/coder.nuspec +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - coder - $version$ - https://github.com/coder/coder/blob/main/scripts/chocolatey - - Coder Technologies\, Inc. - - - - - Coder (Install) - Coder Technologies\, Inc. - https://coder.com - https://github.com/coder/presskit/raw/main/logos/coder%20logo%20black%20square.png?raw=true - Coder Technologies, Inc. - https://coder.com/legal/terms-of-service - true - https://github.com/coder/coder.git - https://coder.com/docs/v2/latest - https://github.com/coder/coder/issues - coder remote-dev terraform development - Remote development environments on your infrastructure provisioned with Terraform - Remote development environments on your infrastructure provisioned with Terraform - - - - -