Skip to content

Commit

Permalink
2024.5.17 Upgrade
Browse files Browse the repository at this point in the history
* Updated build and release workflows
* Bumped version
* Update release notes
  • Loading branch information
k0gen committed May 22, 2024
1 parent 8bbc8c3 commit 9528749
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 21 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/buildService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: Start9Labs/sdk@v1

- name: Checkout services repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build the service package
id: build
Expand All @@ -26,12 +26,11 @@ jobs:
start-sdk init
make
PACKAGE_ID=$(yq -oy ".id" manifest.*)
echo "::set-output name=package_id::$PACKAGE_ID"
echo "package_id=$PACKAGE_ID" >> $GITHUB_ENV
shell: bash

- name: Upload .s9pk
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.build.outputs.package_id }}.s9pk
path: ./${{ steps.build.outputs.package_id }}.s9pk

name: ${{ env.package_id }}.s9pk
path: ./${{ env.package_id }}.s9pk
20 changes: 10 additions & 10 deletions .github/workflows/releaseService.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: Start9Labs/sdk@v1

- name: Checkout services repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Build the service package
run: |
Expand All @@ -26,19 +26,19 @@ jobs:
- name: Setting package ID and title from the manifest
id: package
run: |
echo "::set-output name=package_id::$(yq -oy ".id" manifest.*)"
echo "::set-output name=package_title::$(yq -oy ".title" manifest.*)"
echo "package_id=$(yq -oy ".id" manifest.*)" >> $GITHUB_ENV
echo "package_title=$(yq -oy ".title" manifest.*)" >> $GITHUB_ENV
shell: bash

- name: Generate sha256 checksum
run: |
PACKAGE_ID=${{ steps.package.outputs.package_id }}
PACKAGE_ID=${{ env.package_id }}
sha256sum ${PACKAGE_ID}.s9pk > ${PACKAGE_ID}.s9pk.sha256
shell: bash

- name: Generate changelog
run: |
PACKAGE_ID=${{ steps.package.outputs.package_id }}
PACKAGE_ID=${{ env.package_id }}
echo "## What's Changed" > change-log.txt
yq -oy '.release-notes' manifest.* >> change-log.txt
echo "## SHA256 Hash" >> change-log.txt
Expand All @@ -48,15 +48,15 @@ jobs:
shell: bash

- name: Create GitHub Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ github.ref_name }}
name: ${{ steps.package.outputs.package_title }} ${{ github.ref_name }}
name: ${{ env.package_title }} ${{ github.ref_name }}
prerelease: true
body_path: change-log.txt
files: |
./${{ steps.package.outputs.package_id }}.s9pk
./${{ steps.package.outputs.package_id }}.s9pk.sha256
./${{ env.package_id }}.s9pk
./${{ env.package_id }}.s9pk.sha256
- name: Publish to Registry
env:
Expand All @@ -67,5 +67,5 @@ jobs:
if [[ -z "$S9USER" || -z "$S9PASS" || -z "$S9REGISTRY" ]]; then
echo "Publish skipped: missing registry credentials."
else
start-sdk publish https://$S9USER:$S9PASS@$S9REGISTRY ${{ steps.package.outputs.package_id }}.s9pk
start-sdk publish https://$S9USER:$S9PASS@$S9REGISTRY ${{ env.package_id }}.s9pk
fi
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM redis:alpine as redis

FROM searxng/searxng:2024.3.10-707d6270c
FROM searxng/searxng:2024.5.17-ec41b5358

USER root

Expand Down
12 changes: 9 additions & 3 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
id: searxng
title: "SearXNG"
version: 2024.3.10
version: 2024.5.17
release-notes: |
- Updated SearXNG code to the latest version from upstream.
> `Highlights`
- Use latest Alpine 3.19 as buildbase
- New engines have been implemented: `goodreads`, `ask.com`, and `mullvad leta`.
- New search engines: cargo search (crates.io), Hex.pm, Searchmysite, Gitea, Open Meteo, LibreTranslate, Mullvad Leta.
- New plugins: unit converter, calculator.
- Wikimedia Commons support for media files.
- Added keybindings for copying URLs in Hotkeys. Press "h" key on main or result page to get help.
license: MIT
wrapper-repo: "https://github.com/Start9Labs/searxng-startos"
upstream-repo: "https://github.com/searxng/searxng-docker"
Expand All @@ -29,6 +31,10 @@ main:
args: []
mounts:
main: /root
hardware-requirements:
arch:
- x86_64
- aarch64
health-checks:
web-ui:
name: Web UI
Expand Down
2 changes: 1 addition & 1 deletion scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ export const migration: T.ExpectedExports.migration =
),
},
},
"2024.3.10"
"2024.5.17"
);

0 comments on commit 9528749

Please sign in to comment.