Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Saransh Saini committed Dec 5, 2024
1 parent 3292569 commit 9ee0e8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
if: |
(github.event_name == 'push' && github.ref_type == 'branch') ||
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'enterprise-release-v'))
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/enterprise-release-v'))
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -35,7 +35,7 @@ jobs:

- id: auth
if: |
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'enterprise-release-v')) &&
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/enterprise-release-v')) &&
(github.actor == 'saranshsaini' || github.actor == 'fortenforge')
uses: google-github-actions/auth@v2
timeout-minutes: 1
Expand All @@ -45,7 +45,7 @@ jobs:

- name: Upload Codeium Visual Studio VSIX
if: |
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'enterprise-release-v')) &&
(github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/enterprise-release-v')) &&
(github.actor == 'saranshsaini' || github.actor == 'fortenforge')
uses: google-github-actions/upload-cloud-storage@v2
with:
Expand Down

0 comments on commit 9ee0e8a

Please sign in to comment.