Skip to content

Merge pull request #19 from Autodesk/clean_ci_script #5

Merge pull request #19 from Autodesk/clean_ci_script

Merge pull request #19 from Autodesk/clean_ci_script #5

Workflow file for this run

name: Build and Deploy SyDEVS
on:
push:
tags:
- 'v*'
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Windows Build
if: runner.os == 'Windows'
run: choco install visualstudio2022buildtools --yes
shell: powershell
- name: Setup Linux Build
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y build-essential cmake
- name: Configure Build
run: cmake -S . -B build
shell: bash
- name: Build Project
run: cmake --build build --config Release --parallel
shell: bash
deploy:
runs-on: ubuntu-latest
needs: build
if: startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Prepare Release Package
run: |
sudo apt-get install -y doxygen
(cat doxygen.config; echo "PROJECT_NUMBER=${{ github.ref_name }}") | doxygen -
zip -r SyDEVS-${{ github.ref_name }}.zip doc src CMakeLists.txt CODE_OF_CONDUCT.md CONTRIBUTING.md doxygen.config LICENSE.md README.md
shell: bash
- name: Upload Release Package
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: SyDEVS-${{ github.ref_name }}.zip
asset_name: SyDEVS-${{ github.ref_name }}.zip
tag: ${{ github.ref_name }}
overwrite: false
body: "Release Package for SyDEVS ${{ github.ref_name }}"