Skip to content

add back buttons

add back buttons #29

Workflow file for this run

name: Build and push to registry
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to AppVenture registry
uses: docker/login-action@v3
with:
registry: registry.nush.app
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push image to AppVenture registry
uses: docker/build-push-action@v5
with:
context: frontend
push: true
build-args: |
BACKEND_URL=https://excite-api.nush.app
tags: registry.nush.app/excite:frontend
- name: Push image to AppVenture registry
uses: docker/build-push-action@v5
with:
context: backend
push: true
tags: registry.nush.app/excite:backend
- name: Push image to AppVenture registry
uses: docker/build-push-action@v5
with:
context: sql
push: true
tags: registry.nush.app/excite:postgres