Update people.json #132
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
name: Build and Deploy | |
on: | |
push: | |
branches: [ master ] | |
# Manual activation | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v3 | |
- uses: docker/setup-buildx-action@v1 | |
- name: Log into Docker | |
uses: docker/[email protected] | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Build and push Docker image | |
uses: docker/[email protected] | |
id: docker_build | |
with: | |
push: true | |
tags: datagutt/lsnd:latest | |
- name: Image digest | |
run: echo ${{ steps.docker_build.outputs.digest }} | |
# - name: Deploy | |
# uses: fjogeleit/[email protected] | |
# with: | |
# url: ${{ secrets.UPDATE_SVC_URL }} | |
# bearerToken: ${{ secrets.UPDATE_SVC_TOKEN }} | |
# timeout: 0 |