Skip to content

Commit

Permalink
Add workflow_dispatch and update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
chrowe authored Oct 18, 2024
1 parent 28f2ec3 commit 834b681
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/terraform_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- dev
- staging
- production
workflow_dispatch:

jobs:
build:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
.PHONY:

up-and-build:
docker-compose up -d --build
docker compose up -d --build

up:
docker-compose up -d
docker compose up -d

down:
docker-compose down
docker compose down

lint:
docker-compose run develop yarn run lint
docker compose run develop yarn run lint

logs:
docker logs -f gfw
Expand Down

0 comments on commit 834b681

Please sign in to comment.