Skip to content

finish rename

finish rename #39

Workflow file for this run

# 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 (pewpew)
uses: docker/build-push-action@v4
with:
context: .
file: ./docker/Dockerfile
push: true
tags: |
sjultra/pewpew:latest
- name: Build and push (adapter)
uses: docker/build-push-action@v4
with:
context: ./docker/adapter
file: ./docker/adapter/Dockerfile
push: true
tags: |
sjultra/pewpew-adapter:latest
# ghcr.io/${{ github.repository_owner }}/pewpew:latest
# install and authenticate jfrog/artifactory CLI
# - uses: jfrog/setup-jfrog-cli@v3.0.0
# - name: Verify artifactory server connection
# run: jf rt ping
# - name: Cleanup artifactory
# run: |
# jf rt del "pewpew-helm/*"
# - name: Distribute source to artifactory
# run: |
# cd ./helm
# tar -cvzf pewpew.tgz ./service/
# jf rt upload pewpew.tgz pewpew-helm/
# cd -