Skip to content

Update build.yml

Update build.yml #71

Workflow file for this run

name: run
on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- '*.yml'
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
- '*.yml'
workflow_dispatch:
jobs:
build:
name: "Run on ${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: 4d/tool4d-action@main
id: tool4drun
with:
project: "*"
startup-method: main
product-line: main
version: main
build: official
token: ${{ secrets.DLTK }}
- uses: 4d/tool4d-action@main
id: tool4drunwithparameters
with:
project: "*"
startup-method: main
user-param: '{"name": "goodbye", "word": "world"}'
product-line: main
version: main
build: official
token: ${{ secrets.DLTK }}