Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sahu04 authored Jan 24, 2024
1 parent db0c3c1 commit 00b6dcf
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
name: Build and Publish

on:
# run it on push to the default repository branch
#push:
# branches: [master]

# run it during pull request
release:
pull_request:
branches:
- master
on: [push]

jobs:
run_if:
if: startsWith(github.head_ref, 'releases/')
build_and_publish:
runs-on: ubuntu-latest
steps:
- run: echo "The head of this PR starts with 'releases/'"

steps:
- name: Checkout code
uses: actions/checkout@v1


uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: build docker images
run: docker build . -t goglang:1.10.0 -f ./guestbook-go/Dockerfile
- name: tag docker image
run: docker tag goglang:1.10.0 dikshasahu/golang-image-new:latest

- name: Build Docker image
run: docker build . -t goglang:1.10.0 -f ./guestbook-go/Dockerfile

- name: Tag Docker image
run: docker tag goglang:1.10.0 dikshasahu/golang-image-new:latest1

- name: Scan Docker image with Dockle
run: docker run --rm -i hadolint/hadolint < ./guestbook-go/Dockerfile

- name: Scan Docker image with Trivy
run: trivy image dikshasahu/golang-image-new:latest1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Push docker image
run: docker push dikshasahu/golang-image-new:latest

- name: Push Docker image
run: docker push dikshasahu/golang-image-new:latest1

0 comments on commit 00b6dcf

Please sign in to comment.