-
Notifications
You must be signed in to change notification settings - Fork 965
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2af6cea
commit 99bdce4
Showing
1 changed file
with
6 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,16 +83,10 @@ jobs: | |
dpkg-deb --build infisical-standalone | ||
mv infisical-standalone.deb infisical-linux-${{ matrix.arch }}.deb | ||
- name: Upload to Cloudsmith | ||
- uses: actions/setup-python@v4 | ||
- run: pip install --upgrade cloudsmith-cli | ||
|
||
- name: Publish to Cloudsmith (Linux) | ||
working-directory: ./backend | ||
if: matrix.os == 'linux' | ||
uses: cloudsmith-io/[email protected] | ||
with: | ||
api-key: ${{ secrets.CLOUDSMITH_API_KEY }} | ||
command: "push" | ||
format: "deb" | ||
owner: "your-cloudsmith-org" | ||
repo: "your-cloudsmith-repo" | ||
distro: "any-distro" | ||
release: "any-release" | ||
republish: "true" | ||
file: infisical-linux-${{ matrix.arch }}.deb | ||
run: cloudsmith push deb infisical/infisical-standalone/any-distro/any-version infisical-linux-${{ matrix.arch }}.deb --republish --no-wait-for-sync --version 3.0.0 --api-key ${{ secrets.CLOUDSMITH_API_KEY }} |