Skip to content

Commit

Permalink
Remove dos2unix and edit build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Arilith committed Feb 22, 2025
1 parent 173f1b1 commit fd0dc2c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/main_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ jobs:
- name: Set up Docker
uses: docker/setup-buildx-action@v2

- name: Log in to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

# Build the test stage of the Dockerfile
- name: Rebuild Compose Images
run: docker compose -f docker-compose.test.yml build --no-cache
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ jobs:
with:
token: ${{ secrets.SHARED_PAT }}
submodules: recursive
- name: Log in to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Rebuild Compose Images
run: docker compose -f docker-compose.test.yml build --no-cache
- name: Test image with Docker Compose
Expand Down
2 changes: 1 addition & 1 deletion src/Shared

0 comments on commit fd0dc2c

Please sign in to comment.