Skip to content

chore(package): update dependency cli/cli to v2.93.0 (#745) #780

chore(package): update dependency cli/cli to v2.93.0 (#745)

chore(package): update dependency cli/cli to v2.93.0 (#745) #780

---
name: Release Please
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: release-please-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
jobs:
release-please:
runs-on: ubuntu-latest
outputs:
components_json: ${{ steps.releases.outputs.components_json }}
steps:
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: app-token
with:
app-id: ${{ vars.FORMWORK_REMOVER_APP_ID }}
private-key: ${{ secrets.FORMWORK_REMOVER_PRIVATE_KEY }}
- uses: googleapis/release-please-action@45996ed1f6d02564a971a2fa1b5860e934307cf7 # v5
id: release-please
with:
token: ${{ steps.app-token.outputs.token }}
config-file: release-please-config.json
manifest-file: .release-please-manifest.json
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Gather Release Outputs
env:
OUTPUTS: ${{ toJson(steps.release-please.outputs) }}
id: releases
run: sh .github/workflows/release-please-output-helper.sh
build-release:
runs-on: ubuntu-latest
needs: release-please
if: ${{ needs.release-please.outputs.components_json != '[]' }}
strategy:
matrix:
component: ${{ fromJson(needs.release-please.outputs.components_json) }}
steps:
- name: Checkout Repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Test and Build Component
uses: devcontainers/ci@b63b30de439b47a52267f241112c5b453b673db5 # v0.3.1900000449
with:
cacheFrom: ghcr.io/marinatedconcrete/config-devcontainer
env: |
CI=1
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
imageName: ghcr.io/marinatedconcrete/config-devcontainer
push: never
runCmd: |
just release-please-build ${{ matrix.component.project }} /tmp/${{ matrix.component.project }}.yml
gh release upload ${{ matrix.component.tag }} /tmp/${{ matrix.component.project }}.yml