Skip to content

Commit d051059

Browse files
committed
Update workflows: refine tag ignore settings in build.yml and standardize macOS label in release.yml
1 parent 71a3bdd commit d051059

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
paths-ignore: ['**.md', '.vscode/**','docs/**','pictures/**']
66
branches:
77
- main # Only run on branches
8+
tags-ignore: ['*'] # Ignore all tags
89
pull_request:
910
types: [opened, synchronize, reopened]
1011
paths-ignore: ['**.md', '.vscode/**','docs/**','pictures/**']

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
build:
1818
name: "Build"
19-
runs-on: [macos-latest]
19+
runs-on: [macOS]
2020
steps:
2121
- name: 📄 Checkout repository
2222
uses: actions/checkout@v5
@@ -48,7 +48,6 @@ jobs:
4848
sign-as-bundle: true
4949
ignore-warnings: true
5050

51-
5251
- name: Notarize
5352
run: |
5453
xcrun notarytool submit "${{ github.event.repository.name }}/build/${{ github.event.repository.name }}.zip" --keychain-profile "notary4d" --wait >> notary_tool.log

0 commit comments

Comments
 (0)