Added groups and auto update option #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Setup CODESYS Installation in matrix | |
on: push | |
jobs: | |
setup-codesys: | |
strategy: | |
matrix: | |
generation: | |
- 3.5.16.0 | |
- 3.5.17.0 | |
- 3.5.18.0 | |
- 3.5.19.0 | |
- 3.5.20.0 | |
architecture: | |
- 32 | |
- 64 | |
include: | |
- generation: 3.5.16.0 | |
patch: 3 | |
- generation: 3.5.17.0 | |
patch: 2 | |
- generation: 3.5.18.0 | |
patch: 4 | |
- generation: 3.5.19.0 | |
patch: 6 | |
- generation: 3.5.20.0 | |
patch: 0 | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup CODESYS | |
uses: ./ | |
with: | |
installer-version: 2.2.2 | |
generation: ${{ matrix.generation }} | |
architecture: ${{ matrix.architecture }} | |
patch: ${{ matrix.patch }} |