Skip to content

Commit 4e18feb

Browse files
authored
rename ext to localstack-pro, master to main (#21)
1 parent 6c27ff2 commit 4e18feb

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/update-latest.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,25 @@ jobs:
4444
id: pro-checkout
4545
continue-on-error: true
4646
with:
47-
repository: localstack/localstack-ext
48-
path: localstack-ext
47+
repository: localstack/localstack-pro
48+
path: localstack-pro
4949
token: ${{ secrets.PRO_GITHUB_TOKEN }}
5050
ref: ${{ github.event.client_payload.ref }}
5151

52-
- name: Pro - fallback to master branch
52+
- name: Pro - fallback to main branch
5353
if: steps.pro-checkout.outcome == 'failure'
5454
uses: actions/checkout@v4
5555
with:
56-
repository: localstack/localstack-ext
57-
path: localstack-ext
56+
repository: localstack/localstack-pro
57+
path: localstack-pro
5858
token: ${{ secrets.PRO_GITHUB_TOKEN }}
5959

6060
- name: Install Python Dependencies for Pro
61-
working-directory: localstack-ext
61+
working-directory: localstack-pro
6262
run: make install
6363

6464
- name: Link Community into Pro venv
65-
working-directory: localstack-ext
65+
working-directory: localstack-pro
6666
run: |
6767
source .venv/bin/activate
6868
pip install -e ../localstack[runtime,test]
@@ -71,16 +71,16 @@ jobs:
7171
working-directory: localstack
7272
# Entrypoints need to be generated _after_ the community edition has been linked into the venv
7373
run: |
74-
VENV_DIR="../localstack-ext/.venv" make entrypoints
74+
VENV_DIR="../localstack-pro/.venv" make entrypoints
7575
7676
- name: Create Pro Entrypoints
77-
working-directory: localstack-ext
77+
working-directory: localstack-pro
7878
run: |
7979
make entrypoints
8080
8181
- name: Generate the latest spec
8282
run: |
83-
source localstack-ext/.venv/bin/activate
83+
source localstack-pro/.venv/bin/activate
8484
python bin/update-aws-spec.py --latest
8585
8686
- name: Create PR

0 commit comments

Comments
 (0)