Skip to content

SPDE-130: Re-CD this repo #18

SPDE-130: Re-CD this repo

SPDE-130: Re-CD this repo #18

Workflow file for this run

name: Scratch Workflow
on:
pull_request:
branches: [ "master" ]
jobs:
build:
permissions:
id-token: write # This is required for requesting the JWT
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x] # we should pull this from a common place
steps:
- uses: actions/checkout@v3
- name: Extract version from package.json
uses: sergeysova/jq-action@v2
id: version
with:
cmd: 'jq .version package.json -r'
- uses: cardinalby/git-get-release-action@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
tag: ${{ steps.version.outputs.value }}