Skip to content

Commit

Permalink
Cleanup workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
hrzlgnm committed Oct 4, 2024
1 parent 7943d62 commit 1507085
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/andorid-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

concurrency:
# On main, we want all builds to complete even if merging happens faster to make it easier to discover at which point something broke.
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }}
group: ${{ github.ref == 'refs/heads/main' && format('android-main-{0}', github.sha) || format('android-{0}', github.ref) }}

jobs:
android-pr:
pr:
permissions:
contents: write
uses: ./.github/workflows/android.yml
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "PR"
name: "Desktop PR"

on:
pull_request:
Expand All @@ -7,11 +7,11 @@ on:

concurrency:
# On main, we want all builds to complete even if merging happens faster to make it easier to discover at which point something broke.
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }}
group: ${{ github.ref == 'refs/heads/main' && format('deskop-main-{0}', github.sha) || format('desktop-{0}', github.ref) }}

jobs:
pr:
permissions:
contents: write
uses: ./.github/workflows/tauri.yml
uses: ./.github/workflows/desktop-tauri.yml
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Publish release assets"
name: "Desktop publish release assets"

# This will trigger the action on each tag matching 'mdns-browser-v*'
on:
Expand All @@ -13,7 +13,7 @@ jobs:
attestations: write
contents: write
actions: read
uses: ./.github/workflows/tauri.yml
uses: ./.github/workflows/desktop-tauri.yml
secrets: inherit
with:
tagName: mdns-browser-v__VERSION__
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Push"
name: "Desktop Push"

on:
push:
Expand All @@ -7,11 +7,11 @@ on:

concurrency:
# On main, we want all builds to complete even if merging happens faster to make it easier to discover at which point something broke.
group: ${{ github.ref == 'refs/heads/main' && format('ci-main-{0}', github.sha) || format('ci-{0}', github.ref) }}
group: ${{ github.ref == 'refs/heads/main' && format('dekstop-main-{0}', github.sha) || format('dekstop-{0}', github.ref) }}

jobs:
push:
permissions:
contents: write
uses: ./.github/workflows/tauri.yml
uses: ./.github/workflows/desktop-tauri.yml
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Reusable tauri build workflow"
name: "Reusable desktop tauri build workflow"

on:
workflow_call:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/winget-publish-release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish to WinGet
name: Publish Desktop Release to WinGet
on:
release:
types: [released]
Expand Down

0 comments on commit 1507085

Please sign in to comment.