Skip to content

Update people.json #132

Update people.json

Update people.json #132

Workflow file for this run

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