Skip to content

Commit

Permalink
Added a Checkout step to the beginning of the workflow file.
Browse files Browse the repository at this point in the history
  • Loading branch information
varshadr committed Nov 2, 2023
1 parent b804f57 commit ae81c32
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/update-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Set Git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Checkout code
uses: actions/checkout@v3
with:
Expand All @@ -23,6 +18,11 @@ jobs:
- name: Copy .env.example file to .env file
run: cp .env.example .env

- name: Set Git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- name: Build Docker image
run: docker compose -f docker-compose.yml -f docker-compose.dev.yml up --detach dev-service

Expand Down

0 comments on commit ae81c32

Please sign in to comment.