Skip to content

Hoping this PSA fix fixes the fix. (#122) #4

Hoping this PSA fix fixes the fix. (#122)

Hoping this PSA fix fixes the fix. (#122) #4

name: Build and Publish Remote Falcon API
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'remote-falcon-api/**'
jobs:
build:
name: Build image and push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: ./remote-falcon-api
push: true
tags: whitesoup12/remote-falcon-api:${{ github.sha }}