Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 517 Bytes

File metadata and controls

33 lines (27 loc) · 517 Bytes

Default workflows

NPM package

name: CICD
on:
  - push

jobs:
  release:
    uses: cloud-cli/workflows/.github/workflows/npm-build-release.yml@main
    secrets:
      NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
      GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Node buildpack

name: CICD
on:
  - push

jobs:
  build:
    uses: cloud-cli/workflows/.github/workflows/docker-ghcr-build.yml@main
    with:
      baseImage: cloud-cli/node:latest
      type: node
      withSha: false
      withTag: true