Skip to content

Harbor Publishing

Harbor Publishing #34

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- '*'
paths-ignore:
- '.github/workflows/continuous.yml'
- '.github/workflows/release.yml'
- 'README.md'
jobs:
Build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Environment Variables
uses: "./.github/workflows/setup"
- name: "Build (${{ matrix.os }})"
uses: "./.github/workflows/build"
Publish:
needs: Build
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: false
publish: false
env:
HARBOR_USER: ${{ secrets.HARBOR_USER }}
HARBOR_SECRET: ${{ secrets.HARBOR_SECRET }}