Skip to content

Commit

Permalink
chore: adding Build and deploy VC-API prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
artursudnik committed Oct 9, 2023
1 parent 1db2ddc commit 32207d1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy-vc-api.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and deploy VC-API

on: [push, workflow_dispatch]

jobs:
cancel-previous:
name: 'Cancel Previous Runs'
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

unique_id:
runs-on: ubuntu-latest
steps:
- name: Generate unique id
id: unique_id
run: echo "id=$(uuidgen) >> $GITHUB_OUTPUT"
outputs:
unique_id: ${{ steps.unique_id.outputs.id }}

0 comments on commit 32207d1

Please sign in to comment.