Skip to content

Update directly executed scripts inside workflows (#1107) #107

Update directly executed scripts inside workflows (#1107)

Update directly executed scripts inside workflows (#1107) #107

# Release a typescript package to npm containing the typescript types generated from the latest merged crds
name: Release Typescript Models
on:
push:
branches: [main]
# Only allow one job of this action to be ran at a time
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
release-typescript-models:
runs-on: ubuntu-latest
steps:
- name: Checkout devfile/api
uses: actions/checkout@v2
with:
path: api
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.9.12'
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v2
with:
path: 'api/build/typescript-model/requirements.txt'
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 12
registry-url: 'https://registry.npmjs.org'
scope: '@devfile'
- name: Generate typescript model
run: |
bash ./build/typescript-model/generate.sh
cp -r ./build/typescript-model/workdir/typescript-models ../
working-directory: api
- name: Release typescript models
run: |
VERSION=$(cat $GITHUB_WORKSPACE/api/schemas/latest/jsonSchemaVersion.txt)
yarn --new-version version "$VERSION-$(date +%s)" --no-git-tag-version
yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
working-directory: ./typescript-models