Skip to content

Commit 11f441e

Browse files
committed
fix: install both docker and colima
1 parent c135f16 commit 11f441e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,16 @@ jobs:
7878
- name: Setup docker (missing on MacOS)
7979
if: runner.os == 'macos'
8080
run: |
81-
brew install docker
81+
brew install docker colima
8282
colima start
8383
- name: Publish packages to APT repo
84+
if: contains(github.ref_name, '-') == false
8485
env:
8586
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
8687
GPG_PRIVATE_KEY_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
8788
run: ./scripts/publish-apt-packages.sh
8889
- name: Publish packages to RPM repo
90+
if: contains(github.ref_name, '-') == false
8991
env:
9092
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
9193
GPG_PRIVATE_KEY_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}

0 commit comments

Comments
 (0)