Add back the https and http ports #70
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
# This is a basic workflow to help you get started with Actions | |
name: Build and push docker image | |
# Controls when the workflow will run | |
on: | |
# commented to not be triggered on each commit | |
# # Triggers the workflow on push or pull request events but only for the "main" branch | |
push: | |
branches: ["main"] | |
# pull_request: | |
# branches: [ "main" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
runs-on: ubuntu-latest | |
env: | |
JF_URL: ${{ secrets.JFROG_URL }} | |
JF_ACCESS_TOKEN: ${{ secrets.JFROG_ACCESS_TOKEN }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
# Runs a single command using the runners shell | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GH_TOKEN }} | |
- name: Login to Jfrog Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: sju.jfrog.io | |
username: ${{ secrets.JFROG_USERNAME }} | |
password: ${{ secrets.JFROG_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./docker/Dockerfile-k8s | |
push: true | |
tags: | | |
sjultra/sammwise:latest | |
ghcr.io/${{ github.repository_owner }}/sammwise:latest | |
# ${{ secrets.JFROG_REGISTRY }}/${{ secrets.JFROG_REPOSITORY }}/sammwise:latest | |
# install and authenticate jfrog/artifactory CLI | |
# - uses: jfrog/[email protected] | |
# - name: Verify artifactory server connection | |
# run: jf rt ping | |
# - name: Cleanup artifactory | |
# run: | | |
# jf rt del "owasp-swammwise-helm/*" | |
# - name: Distribute source to artifactory | |
# run: | | |
# cd ./helm | |
# tar -cvzf sammwise.tgz ./service/ | |
# jf rt upload sammwise.tgz owasp-sammwise-helm/ | |
# cd - | |