Skip to content

Commit

Permalink
Added missing shells to composite action (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mephenor authored Nov 15, 2024
1 parent dcb132e commit a53609d
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/push_to_docker/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,26 +51,28 @@ runs:

- name: Symlink requirement files
id: symlink-requirements
shell: bash
run: cp -r lock services/${{ inputs.service }}/lock

- name: Prepare Dockerfile
id: prepare-dockerfile
shell: bash
run: cp Dockerfile services/${{ inputs.service }}/ && sed -i "s/\(ENTRYPOINT \)\[\]/\1[\"${{ inputs.service }}\"]/" services/${{ inputs.service }}/Dockerfile

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

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

- uses: docker/login-action@v3
name: Login to DockerHub
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ inputs.dockerhub_username }}
password: ${{ inputs.dockerhub_token }}

- uses: docker/build-push-action@v5
name: Build and push
- name: Build and push
uses: docker/build-push-action@v5
id: docker_build
with:
push: true
Expand Down

0 comments on commit a53609d

Please sign in to comment.