Skip to content

Commit

Permalink
Update daily-live scripts and comparisons
Browse files Browse the repository at this point in the history
  • Loading branch information
bluesabre committed Oct 20, 2024
1 parent 588bff9 commit b720ab2
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .github/update.sh → .github/interim.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

RELEASE="oracular"
RELEASE="plucky"
ARCHES="amd64"
DATE=`date -u +%Y%m%d`
URL=""
Expand Down
20 changes: 20 additions & 0 deletions .github/lts.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash

RELEASE="noble"
ARCHES="amd64"
DATE=`date -u +%Y%m%d`
URL=""

for ARCH in `echo $ARCHES`; do
URL="http://cdimage.ubuntu.com/xubuntu/$RELEASE/daily-live/current/$RELEASE-desktop-$ARCH.manifest"
if wget -q --method=HEAD "$URL"; then
echo $URL
wget -O "desktop-$ARCH.manifest" "$URL"
fi

URL="http://cdimage.ubuntu.com/xubuntu/$RELEASE/daily-minimal/current/$RELEASE-minimal-$ARCH.manifest"
if wget -q --method=HEAD "$URL"; then
echo $URL
wget -O "minimal-$ARCH.manifest" "$URL"
fi
done
27 changes: 22 additions & 5 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Update daily-live manifest
name: Update daily-live manifests
on:
schedule:
- cron: "0 12,18 * * *"
jobs:
update:
update-interim-release:
runs-on: ubuntu-latest
steps:
# Checkout the branch
- name: checkout
uses: actions/checkout@v2
with:
Expand All @@ -15,8 +14,26 @@ jobs:

- name: update manifest files
run: |
chmod +x "${GITHUB_WORKSPACE}/.github/update.sh"
"${GITHUB_WORKSPACE}/.github/update.sh"
chmod +x "${GITHUB_WORKSPACE}/.github/interim.sh"
"${GITHUB_WORKSPACE}/.github/interim.sh"
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update daily-live manifest
update-lts-release:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: noble-daily-live
token: ${{ secrets.PAT }}

- name: update manifest files
run: |
chmod +x "${GITHUB_WORKSPACE}/.github/lts.sh"
"${GITHUB_WORKSPACE}/.github/lts.sh"
- name: commit
uses: stefanzweifel/git-auto-commit-action@v4
Expand Down
39 changes: 10 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,43 +3,24 @@ Manifest files for each Xubuntu release

Use this repository to compare changes between releases.

# Xubuntu 24.04 "Noble Numbat"
- [23.10 to 24.04.1](https://github.com/Xubuntu/xubuntu-manifest/compare/23.10...24.04.1)
- [22.04 to 24.04.1](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...24.04.1)

# Xubuntu 23.10 "Mantic Minotaur"
- [23.04 to 23.10](https://github.com/Xubuntu/xubuntu-manifest/compare/23.04...23.10)
# Xubuntu 25.04 "Plucky Puffin"
- [24.10 to daily-live](https://github.com/Xubuntu/xubuntu-manifest/compare/24.10...daily-live)

## Xubuntu 23.04 "Lunar Lobster"
- [22.04 to 23.04](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...23.04)
- [22.10 to 23.04](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...23.04)
# Xubuntu 24.10 "Oracular Oriole"
- [24.04 to 24.10](https://github.com/Xubuntu/xubuntu-manifest/compare/24.04...24.10)

## Xubuntu 22.10 "Kinetic Kudu"
- [22.04 to 22.10](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...22.10)
# Xubuntu 24.04 "Noble Numbat"
- [24.04.1 to noble-daily](https://github.com/Xubuntu/xubuntu-manifest/compare/24.04.1...noble-daily-live)
- [24.04.1 to 24.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/24.04.1...xubuntu-24.04)
- [22.04.x to 24.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/xubuntu-22.04...xubuntu-24.04)

## Xubuntu 22.04 "Jammy Jellyfish"
- [22.04 to 22.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...xubuntu-22.04)
- [20.04.x to 22.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/xubuntu-20.04...xubuntu-22.04)
- [21.10 to 22.04](https://github.com/Xubuntu/xubuntu-manifest/compare/21.10...22.04)
- [22.04 to 22.04.1](https://github.com/Xubuntu/xubuntu-manifest/compare/22.04...22.04.1)

## Xubuntu 21.10 "Impish Indri"
- [21.04 to 21.10](https://github.com/Xubuntu/xubuntu-manifest/compare/21.04...21.10)

## Xubuntu 21.04 "Hirsute Hippo"
- [20.10 to 21.04](https://github.com/Xubuntu/xubuntu-manifest/compare/20.10...21.04)

## Xubuntu 20.10 "Groovy Gorilla"
- [20.04 to 21.10](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04...20.10)

## Xubuntu 20.04 "Focal Fossa"
- [18.04.x to 20.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/xubuntu-18.04...xubuntu-20.04)
- [20.04 to 20.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04...xubuntu-20.04)
- [20.04 to 20.04.1](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04...20.04.1)
- [20.04.1 to 20.04.2](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04.1...20.04.2)
- [20.04.2 to 20.04.2.0](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04.2...20.04.2.0)
- [20.04.2.0 to 20.04.3](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04.2.0...20.04.3)
- [20.04.3 to 20.04.4](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04.3...20.04.4)
- [20.04.4 to 20.04.5](https://github.com/Xubuntu/xubuntu-manifest/compare/20.04.4...20.04.5)
- [18.04.x to 20.04.x](https://github.com/Xubuntu/xubuntu-manifest/compare/xubuntu-18.04...xubuntu-20.04)

## Build your own comparison
[Compare](https://github.com/Xubuntu/xubuntu-manifest/compare)

0 comments on commit b720ab2

Please sign in to comment.