Update docs, workflows

This commit is contained in:
2023-03-25 22:11:16 +01:00
parent 975f3e0362
commit 6675c003e7
4 changed files with 36 additions and 8 deletions

View File

@@ -9,12 +9,14 @@ permissions:
contents: write
jobs:
build-and-release:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: actions/setup-python@v4
name: Setup Python
with:
python-version: "3.11"
@@ -27,11 +29,30 @@ jobs:
run: pyinstaller dyn2py.spec
- uses: actions/upload-artifact@v3
name: Upload artifact
with:
name: dyn2py.exe
path: dist/dyn2py.exe
release:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
name: Checkout
- name: Generate changelog
id: changelog
uses: metcalfc/changelog-generator@v4.1.0
with:
myToken: ${{ secrets.GITHUB_TOKEN }}
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: dyn2py.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/dyn2py.exe
files: dyn2py.exe
body: ${{ steps.modified.outputs.log }}
# TODO: pip

View File

@@ -2,9 +2,8 @@ name: Deploy website
on:
push:
# Only build for tags.
tags:
- "*"
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch: