Skip to content

Merge branch 'main' of github.com:AndrewQuijano/Level-Site-PPDT #27

Merge branch 'main' of github.com:AndrewQuijano/Level-Site-PPDT

Merge branch 'main' of github.com:AndrewQuijano/Level-Site-PPDT #27

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# GitHub recommends pinning actions to a commit SHA.
# To get a newer version, you will need to update the SHA.
# You can also reference a tag or branch, but the action may change without warning.
# https://github.com/docker/build-push-action
on:
push:
branches:
- "main"
jobs:
build:
runs-on: ubuntu-latest
env:
ALIAS: appsec
KEYSTORE: keystore
PASSWORD: ${{ secrets.PASSWORD }}
CERTIFICATE: ppdt-certificate
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create Key Store
run: sh create_keystore.sh
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/ppdt:latest