diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 8c0a00c..f1c0939 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -44,7 +44,8 @@ jobs: - name: Run Pyreverse shell: bash run: | - pyreverse -o pdf --verbose --colorize src + pyreverse -o pdf --verbose --colorize src + pyreverse -o svg --verbose --colorize src - name: Upload Artifact uses: actions/upload-artifact@v4 @@ -55,6 +56,7 @@ jobs: overwrite: true path: | classes.pdf + classes.svg release: name: Release @@ -79,7 +81,7 @@ jobs: id: version shell: bash run: | - echo "::set-output name=version::$(cat VERSION)" + echo "version=$(cat VERSION)" >> GITHUB_OUTPUT - name: Release uses: marvinpinto/action-automatic-releases@latest @@ -91,3 +93,4 @@ jobs: prerelease: false files: | classes.pdf + classes.svg