-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,33 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
'on': | ||
push: | ||
branches: ["main"] | ||
branches: | ||
- main | ||
pull_request: | ||
branches: ["main"] | ||
|
||
branches: | ||
- main | ||
jobs: | ||
build_and_push: | ||
name: 'Build and Push' | ||
name: Build and Push | ||
runs-on: ubuntu-latest | ||
|
||
|
||
steps: | ||
- name: Build the Docker image | ||
uses: actions/checkout@v4 | ||
# run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) | ||
- name: Generate sha | ||
|
||
id: generate_sha | ||
run: | | ||
SHA=$(echo $GITHUB_SHA | head -c7) | ||
echo "sha=$SHA" >> $GITHUB_OUTPUT | ||
- name: Build docker image | ||
run: | | ||
docker build -t rogeriojr/projeto-nlw-node-fastify:${{ steps.generate_sha.outputs.sha }} . | ||
- name: Log into the container register | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Push image | ||
run: | | ||
docker push rogeriojr/projeto-nlw-node-fastify:${{ steps.generate_sha.outputs.sha }} | ||
docker tag docker push rogeriojr/projeto-nlw-node-fastify:${{ steps.generate_sha.outputs.sha }} rogeriojr/projeto-nlw-node-fastify:latest | ||
docker tag rogeriojr/projeto-nlw-node-fastify:${{ steps.generate_sha.outputs.sha }} rogeriojr/projeto-nlw-node-fastify:latest | ||
docker push rogeriojr/projeto-nlw-node-fastify:latest |