소스 검색

Remove unnecessary conditions

WhizPanda 1 년 전
부모
커밋
5d6dadda76
1개의 변경된 파일1개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 4
      .github/workflows/release.yml

+ 1 - 4
.github/workflows/release.yml

@@ -34,7 +34,6 @@ jobs:
           #   target: armv7-unknown-linux-gnueabihf
 
     runs-on: ${{ matrix.os }}
-    if: startsWith(github.repository, 'wonfen')
     steps:
       - name: Checkout Repository
         uses: actions/checkout@v4
@@ -168,9 +167,7 @@ jobs:
   release-update:
     needs: [release]
     runs-on: ubuntu-latest
-    if: |
-      startsWith(github.repository, 'wonfen') &&
-      startsWith(github.ref, 'refs/tags/v')
+    if: startsWith(github.ref, 'refs/tags/v')
     steps:
       - name: Checkout repository
         uses: actions/checkout@v4