Skip to content

Commit

Permalink
ci: remove event.id
Browse files Browse the repository at this point in the history
  • Loading branch information
hiroppy committed Feb 28, 2024
1 parent bd8bdf9 commit 82100a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ jobs:
- uses: ./.github/actions/setup-db
- run: |
docker build \
-t app:${{github.event.number}} \
-t app \
-f Dockerfile \
--build-arg POSTGRES_URL=${{env.POSTGRES_URL}} \
--build-arg NEXTAUTH_SECRET=${{env.NEXTAUTH_SECRET}} \
--build-arg NEXT_PUBLIC_SITE_URL=${{env.NEXT_PUBLIC_SITE_URL}} \
.
- run: docker run -d -p 3000:3000 app:${{github.event.number}}
- run: docker run -d -p 3000:3000 app
- run: |
until $(curl --output /dev/null --silent --fail ${{env.NEXT_PUBLIC_SITE_URL}}); do
printf '!'
Expand Down

0 comments on commit 82100a4

Please sign in to comment.