Skip to content

Debug that find command. #28

Debug that find command.

Debug that find command. #28

Workflow file for this run

name: Release
on:
push:
branches:
- 'release/*'
jobs:
BuildPackage:
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: "./.github/workflows/setup"
- name: "Build (${{ matrix.os }})"
uses: "./.github/workflows/build"
- name: "Package (${{ matrix.os }})"
uses: "./.github/workflows/package"
Publish:
needs: BuildPackage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: "./.github/workflows/setup"
- name: "Publish"
uses: "./.github/workflows/publish"
with:
isRelease: true
env:
HARBOR_USER: ${{ secrets.HARBOR_USER }}
HARBOR_SECRET: ${{ secrets.HARBOR_SECRET }}