Skip to content

Merge pull request #14 from scogliera/Refactor #10

Merge pull request #14 from scogliera/Refactor

Merge pull request #14 from scogliera/Refactor #10

Workflow file for this run

name: Build and push to TdA
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push multi-platform images
uses: docker/build-push-action@v3
with:
context: ./
tags: tda-dotnet:latest
outputs: type=docker,dest=/tmp/tda-dotnet.tar
- name: Upload to TdA
uses: Tour-de-App/upload-app@tda-24
with:
team_secret: ${{ secrets.TEAM_SECRET }}
image_name: tda-dotnet
image_path: /tmp/tda-dotnet.tar