Skip to content

Commit

Permalink
bump the version, update ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
mrquantumoff committed Jan 17, 2025
1 parent d3b99dd commit 169b3f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,15 @@ jobs:
runs-on: ubuntu-latest
needs: publish-tauri
steps:
- name: Parse semver string
id: semver_parser
uses: booxmedialtd/ws-action-parse-semver@v1
with:
input_string: ${{github.ref_name}}
- env:
VERSION: ${{github.ref_name}}
CHANNEL: ${{steps.semver_parser.outputs.prerelease}}
run: |
echo "App version: $VERSION"
curl -s -X PUT --header "Authorization: ${{secrets.VERSION_UPDATE_TRIGGER_TOKEN}}" https://api.mrquantumoff.dev/api/any/quadrant/add_updates/$VERSION"
echo App version: $VERSION
echo Update channel: $CHANNEL
curl -X PUT --header 'Authorization: ${{secrets.VERSION_UPDATE_TRIGGER_TOKEN}}' https://api.mrquantumoff.dev/api/any/quadrant/add_updates/$CHANNEL/$VERSION"
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Quadrant",
"version": "25.1.0-preview.2",
"version": "25.1.0-preview.3",
"identifier": "dev.mrquantumoff.mcmodpackmanager",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down

0 comments on commit 169b3f7

Please sign in to comment.