Skip to content

fix(types): global components not defined #74

fix(types): global components not defined

fix(types): global components not defined #74

Workflow file for this run

name: Push & Release 🌍
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'push' && github.ref }}
cancel-in-progress: true
on:
release:
types:
- released
- prereleased
push:
branches:
- master
paths-ignore:
- '**/*.md'
jobs:
label:
name: Label conflicted PRs πŸ·οΈβ›”
if: ${{ always() && !cancelled() }}
runs-on: ubuntu-latest
steps:
- name: Check all PRs for merge conflicts and label them β›”
uses: eps1lon/[email protected]
with:
dirtyLabel: "merge conflict"
repoToken: ${{ secrets.JF_BOT_TOKEN }}
main:
name: ${{ github.event_name == 'push' && 'Unstable πŸš€βš οΈ' || 'Stable πŸ·οΈβœ…' }}
uses: ./.github/workflows/__package.yml
secrets: inherit
# Needed for attestation publication
permissions:
id-token: write
attestations: write
with:
commit: ${{ github.event_name == 'push' && github.sha }}
is_prerelease: ${{ github.event_name == 'release' && github.event.action == 'prereleased' }}
tag_name: ${{ github.event_name == 'release' && github.event.release.tag_name }}
push: true
codeql:
name: GitHub CodeQL πŸ”¬
uses: ./.github/workflows/__codeql.yml
permissions:
actions: read
contents: read
security-events: write
with:
commit: ${{ github.sha }}
deploy:
name: Deploy πŸš€
uses: ./.github/workflows/__deploy.yml
needs:
- main
permissions:
contents: read
deployments: write
secrets: inherit
with:
branch: ${{ github.ref_name }}
comment: false