Skip to content
This repository has been archived by the owner on Jul 7, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
NayamAmarshe committed Jun 26, 2024
2 parents cc2161a + 1e51c3a commit 6799cf9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,12 @@ jobs:

- name: Commit changes
run: |
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add src/lib/constants/upscayl-version.ts
git commit -m "Update Upscayl version to ${{ steps.get-version.outputs.version }}"
if [[ "$(echo "${{ steps.get-version.outputs.version }}")" != "$(cat src/lib/constants/upscayl-version.ts | grep -oP "(?<=UPSCAYL_VERSION = ')(.*)(?=';)")" ]]; then
git config user.name "${{ github.actor }}"
git config user.email "${{ github.actor }}@users.noreply.github.com"
git add src/lib/constants/upscayl-version.ts
git commit -m "Update Upscayl version to ${{ steps.get-version.outputs.version }}"
fi
- name: Push changes
uses: ad-m/github-push-action@v0.8.0
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/DownloadSection.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
>
<Icon icon="ph:windows-logo" width="5rem" />
<h5 class="text-xl font-medium">Windows</h5>
<p class="text-sm text-slate-400">Windows 8 and above</p>
<p class="text-sm text-slate-400">Windows 10 and above</p>
</button>

<button
Expand Down
2 changes: 1 addition & 1 deletion src/lib/constants/upscayl-version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const UPSCAYL_VERSION = '2.9.8';
export const UPSCAYL_VERSION = '2.10.0';

0 comments on commit 6799cf9

Please sign in to comment.