Skip to content

Commit

Permalink
feat(wxt): Switch to 5.4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed Dec 20, 2024
1 parent 75d8f90 commit 4a35584
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build
on:
push:
branches:
- 10.3.x
- 10.4.x

# Environment variables available to all jobs and steps in this workflow
env:
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
export DB_TYPE=${{ matrix.db.type }}
export DB_PORT=${{ matrix.db.port }}
git clone --branch 10.3.x https://github.com/drupalwxt/docker-scaffold.git docker
git clone --branch 10.4.x https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: |
export DB_TYPE=mysql
export DB_PORT=3306
git clone --branch 10.3.x https://github.com/drupalwxt/docker-scaffold.git docker
git clone --branch 10.4.x https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
export DB_TYPE=mysql
export DB_PORT=3306
git clone --branch 10.3.x https://github.com/drupalwxt/docker-scaffold.git docker
git clone --branch 10.4.x https://github.com/drupalwxt/docker-scaffold.git docker
make build
docker compose -f docker-compose.ci.yml up -d
docker ps -a
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ PLATFORM := $(shell uname -s)
$(eval GIT_USERNAME := $(if $(GIT_USERNAME),$(GIT_USERNAME),gitlab-ci-token))
$(eval GIT_PASSWORD := $(if $(GIT_PASSWORD),$(GIT_PASSWORD),$(CI_JOB_TOKEN)))
DOCKER_REPO := https://github.com/drupalwxt/docker-scaffold.git
SCAFFOLD_VERSION := '10.3.x'
SCAFFOLD_VERSION := '10.4.x'
GET_DOCKER := $(shell [ -d docker ] || git clone --branch $(SCAFFOLD_VERSION) $(DOCKER_REPO) docker)
include docker/Makefile

0 comments on commit 4a35584

Please sign in to comment.