Skip to content

Commit 9732d7a

Browse files
committed
fix(e2e-test): use main for fusionauth-docker-image-version
- due to the solution for homebrew FusionAuth/homebrew-fusionauth#16 not being retrofitted to previous release tags we start with main and then add tags with each new release or once retrofitted
1 parent 77d59df commit 9732d7a

3 files changed

+10
-10
lines changed

.github/workflows/e2e-test-fusionauth-latest-ios-latest.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
workflow_call:
1414

1515
env:
16-
fusionauth-docker-image-version: "1.55.1"
16+
fusionauth-docker-image-version: "main"
1717

1818
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1919
jobs:
@@ -107,7 +107,7 @@ jobs:
107107

108108
# Add PostgreSQL to the PATH.
109109
- name: Add PostgreSQL to the PATH
110-
run: echo "$(brew --prefix postgresql@${{matrix.postgresql-version }})/bin" >> $GITHUB_PATH
110+
run: echo "$(brew --prefix postgresql@${{ matrix.postgresql-version }})/bin" >> $GITHUB_PATH
111111

112112
# Add PostgreSQL fusionauth user with default password.
113113
- name: Add PostgreSQL fusionauth user
@@ -119,11 +119,11 @@ jobs:
119119

120120
# Tap FusionAuth Homebrew formulae.
121121
- name: Tap FusionAuth Homebrew formulae
122-
run: brew tap fusionauth/fusionauth
122+
run: brew tap fusionauth/fusionauth@${{ env.fusionauth-docker-image-version }}
123123

124124
# Install FusionAuth App with brew.
125125
- name: Install FusionAuth App
126-
run: brew install fusionauth-app -v
126+
run: brew install fusionauth-app@${{ env.fusionauth-docker-image-version }} -v
127127

128128
# Configure FusionAuth App with silent mode.
129129
- name: Configure FusionAuth App

.github/workflows/e2e-test-fusionauth-latest-ios-matrix.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
workflow_call:
1414

1515
env:
16-
fusionauth-docker-image-version: "1.55.1"
16+
fusionauth-docker-image-version: "main"
1717

1818
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
1919
jobs:
@@ -148,11 +148,11 @@ jobs:
148148

149149
# Tap FusionAuth Homebrew formulae.
150150
- name: Tap FusionAuth Homebrew formulae
151-
run: brew tap fusionauth/fusionauth
151+
run: brew tap fusionauth/fusionauth@${{ env.fusionauth-docker-image-version }}
152152

153153
# Install FusionAuth App with brew.
154154
- name: Install FusionAuth App
155-
run: brew install fusionauth-app -v
155+
run: brew install fusionauth-app@${{ env.fusionauth-docker-image-version }} -v
156156

157157
# Configure FusionAuth App with silent mode.
158158
- name: Configure FusionAuth App

.github/workflows/e2e-test-fusionauth-matrix-ios-latest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
swift: [ "6.0.2" ]
3939
os: [ "macos-15" ]
4040
postgresql-version: [ "16" ]
41-
fusionauth-docker-image-version: [ "1.51.2", "1.52.1", "1.53.3", "1.54.0", "1.55.1" ]
41+
fusionauth-docker-image-version: [ "main" ]
4242

4343
# Steps represent a sequence of tasks that will be executed as part of the job
4444
steps:
@@ -115,11 +115,11 @@ jobs:
115115

116116
# Tap FusionAuth Homebrew formulae.
117117
- name: Tap FusionAuth Homebrew formulae
118-
run: brew tap fusionauth/fusionauth
118+
run: brew tap fusionauth/fusionauth@${{ matrix.fusionauth-docker-image-version }}
119119

120120
# Install FusionAuth App with brew.
121121
- name: Install FusionAuth App
122-
run: brew install fusionauth-app -v
122+
run: brew install fusionauth-app@${{ matrix.fusionauth-docker-image-version }} -v
123123

124124
# Configure FusionAuth App with silent mode.
125125
- name: Configure FusionAuth App

0 commit comments

Comments
 (0)