Skip to content

Commit

Permalink
Update docker-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Formartha authored Feb 27, 2024
1 parent d697a6d commit ab335c2
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,24 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v3

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

- name: Get Git commit SHA
id: git_sha
run: echo "::set-output name=sha::$(git rev-parse --short HEAD)"
- name: Get Git commit SHA
id: git_sha
run: echo "::set-output name=sha::$(git rev-parse --short HEAD)"

- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag formartha/ai1899:${{ steps.git_sha.outputs.sha }}
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag formartha/ai1899:${{ steps.git_sha.outputs.sha }} --compress
- name: Log into Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Log into Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin

- name: Push Docker image to Docker Hub
run: |
docker tag formartha/ai1899:${{ steps.git_sha.outputs.sha }} formartha/ai1899:latest
docker push formartha/ai1899:latest
- name: Push Docker image to Docker Hub
run: |
docker tag formartha/ai1899:${{ steps.git_sha.outputs.sha }} formartha/ai1899:latest
docker push formartha/ai1899:latest

0 comments on commit ab335c2

Please sign in to comment.