Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

add Ubuntu 23 and Fedora 38 to list of distros #587

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release_debrpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,13 @@ jobs:
nfpm pkg --packager rpm -f build/nfpm.${{matrix.arch}}.yaml
- name: Push amd64 (deb)
run: |
debs=(35 203 206 207 210 215 219 220 221 233 235 237 261)
debs=(35 203 206 207 210 215 219 220 221 233 235 237 261 266)
for distro_version in "${debs[@]}"; do
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash_*_${{matrix.arch}}.deb)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
done
- name: Push x86_64 (rpm)
run: |
rpms=(194 204 209 216 226 231 236 239 240 244 260)
rpms=(194 204 209 216 226 231 236 239 240 244 260 273)
for distro_version in "${rpms[@]}"; do
curl -F "package[distro_version_id]=${distro_version}" -F "package[package_file]=@$(ls wash-*.${{matrix.rpmarch}}.rpm)" https://$PACKAGECLOUD_TOKEN:@packagecloud.io/api/v1/repos/wasmcloud/core/packages.json;
done