Skip to content

Commit

Permalink
chore: Update Docker configurations and GitHub actions workflows
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
johnnyhuy committed Jul 14, 2024
1 parent dc2513d commit 9f2727f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ exec:

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

plausible-down:
docker compose -f compose.plausible.yaml down
docker compose -f compose.yaml -f compose.plausible.yaml down

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

0 comments on commit 9f2727f

Please sign in to comment.