Skip to content

Commit

Permalink
support up to fedora 40 and ubuntu nobal, bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rongxin-liu committed Jun 22, 2024
1 parent 31232a0 commit 06deae2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
PACKAGECLOUD_REPO="cs50/repo"
# Deploy deb to ubuntu repos
UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy kinetic lunar )
UBUNTU_REPOS=( xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute impish jammy kinetic lunar noble )
for repo in "${UBUNTU_REPOS[@]}"; do
package_cloud push "$PACKAGECLOUD_REPO"/ubuntu/"$repo" ${PWD}/artifacts/*.deb
done
# Deploy rpm to fedora repos
for repo in $(seq 28 38); do
for repo in $(seq 28 40); do
package_cloud push "$PACKAGECLOUD_REPO"/fedora/"$repo" ${PWD}/artifacts/*.rpm
done
env:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 11.0.2
VERSION := 11.0.3
MAJOR_VERSION := $(shell echo $(VERSION) | cut -d'.' -f1)

# installation directory (/usr/local by default)
Expand Down

0 comments on commit 06deae2

Please sign in to comment.