Skip to content

Commit 19fd37a

Browse files
committed
Update GitHub Actions workflows to use master branch only
1 parent 46c7939 commit 19fd37a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build-native-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and Deploy Native App
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ master ]
66
paths:
77
- 'Server/**'
88
- '.github/workflows/build-native-app.yml'
@@ -54,7 +54,7 @@ jobs:
5454
name: Deploy to TabAgentDist
5555
needs: build
5656
runs-on: ubuntu-latest
57-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
57+
if: github.ref == 'refs/heads/master'
5858

5959
steps:
6060
- name: Checkout main repository

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Create Release
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ master ]
66
paths:
77
- 'package.json'
88
- 'manifest.json'
@@ -55,7 +55,7 @@ jobs:
5555
## Tab Agent Extension v${{ steps.version.outputs.version }}
5656
5757
### Changes in this release:
58-
- Automatic release from main branch
58+
- Automatic release from master branch
5959
6060
### Installation
6161
To install this release:

.github/workflows/sync-distros.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Sync Distribution Files
22

33
on:
44
push:
5-
branches: [ main, master ]
5+
branches: [ master ]
66
paths:
77
- 'package.json'
88
- 'manifest.json'
@@ -79,7 +79,7 @@ jobs:
7979
name: Deploy to TabAgentDist
8080
needs: build
8181
runs-on: ubuntu-latest
82-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
82+
if: github.ref == 'refs/heads/master'
8383

8484
steps:
8585
- name: Checkout main repository

0 commit comments

Comments
 (0)