Skip to content

Commit

Permalink
chore(ci): skip uploading centos packages to cloudsmith
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyZhang0707 authored and kikito committed Jun 23, 2024
1 parent fa9d2cb commit 72c7411
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,12 @@ jobs:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
CLOUDSMITH_DRY_RUN: ''
IGNORE_CLOUDSMITH_FAILURES: ${{ vars.IGNORE_CLOUDSMITH_FAILURES }}
USE_CLOUDSMITH: ${{ vars.USE_CLOUDSMITH }}
# skip CentOS package uploads for Cloudsmith
#
# Cloudsmith doesn't support CentOS as a unique distribution
# there is only "el" (enterprise linux) distributions that cover all
# RedHat-family OSs and that distribution is covered by the rhel label
USE_CLOUDSMITH: ${{ ! startsWith(matrix.label, 'centos') || '' && vars.USE_CLOUDSMITH }}
run: |
sha256sum bazel-bin/pkg/*
Expand Down

0 comments on commit 72c7411

Please sign in to comment.