Skip to content

Commit 9f2727f

Browse files
committed
chore: Update Docker configurations and GitHub actions workflows
- Update docker-compose commands in Makefile to point to the correct file - Add GH_TOKEN environment variable in release.yml workflow job - Improve steps definition in release.yml workflow job
1 parent dc2513d commit 9f2727f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818

1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2122

2223
steps:
2324
- uses: actions/checkout@v4

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ exec:
5050

5151
plausible-up: init
5252
@echo "Plausible is running at http://localhost:8000 or http://plausible.localhost"
53-
docker compose -f compose.plausible.yaml up -d
53+
docker compose -f compose.yaml -f compose.plausible.yaml up -d
5454

5555
plausible-down:
56-
docker compose -f compose.plausible.yaml down
56+
docker compose -f compose.yaml -f compose.plausible.yaml down
5757

5858
up: init
5959
@echo "Backstage is running at http://localhost:7007 or http://backstage.localhost"

0 commit comments

Comments
 (0)