Skip to content

pubdomain

pubdomain #39

Workflow file for this run

name: Main Workflow
on:
push:
branches:
- main
- develop
# pull_request:
# release:
# types: [published]
jobs:
build:
uses: ./.github/workflows/build.yml
check:
needs: build
uses: ./.github/workflows/check.yml
publish:
# if: github.ref == 'refs/heads/main' || github.event_name == 'release'
needs: check
uses: ./.github/workflows/publish.yml
secrets:
GH_PUSH_TOKEN: ${{ secrets.GH_PUSH_TOKEN }}