Skip to content

Commit

Permalink
Fix GitHub Action for CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
glegoux committed Nov 15, 2024
1 parent b0d5489 commit 023dc75
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Install Docker Compose
run: |
Expand All @@ -27,6 +30,12 @@ jobs:
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Install project
run: |
./.ci/install.sh && \
Expand Down

0 comments on commit 023dc75

Please sign in to comment.