File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 75
75
env :
76
76
GITHUB_TOKEN : ${{ secrets.CLI_RELEASE }}
77
77
GPG_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
78
- - name : Install createrepo_c
79
- run : brew install createrepo_c
78
+ - name : Verify Docker is available
79
+ run : |
80
+ # Docker should already be available on macOS runners
81
+ docker --version
82
+ echo "Docker is available for createrepo_c operations"
80
83
- name : Publish packages to APT repo
81
84
if : contains(github.ref_name, '-') == false
82
85
env :
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ aws s3 sync s3://${RPM_BUCKET_NAME}/${RPM_REPO_PATH}/RPMS/ ${TEMP_DIR}/rpm-repo/
33
33
printf " \n>>> Adding new packages to local repo \n"
34
34
cp ${GORELEASER_PACKAGES_FOLDER} /* .rpm ${TEMP_DIR} /rpm-repo/RPMS/
35
35
36
- # Create RPM repository metadata using createrepo_c
36
+ # Create RPM repository metadata using createrepo_c in Docker
37
37
printf " \n>>> Creating RPM repository metadata \n"
38
38
docker run --rm \
39
39
-v " ${TEMP_DIR} /rpm-repo:/repo" \
You can’t perform that action at this time.
0 commit comments