diff --git a/.github/workflows/cd.yaml b/.github/workflows/cd.yaml new file mode 100644 index 0000000..e0f928a --- /dev/null +++ b/.github/workflows/cd.yaml @@ -0,0 +1,36 @@ +name: Continuous Delivery + +on: + push: + +jobs: + build: + strategy: + matrix: + os: + - ubuntu-latest + - windows-latest + - macos-latest + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v2.4.2 + - name: Setup Python + uses: actions/setup-python@v4.2.0 + with: + python-version: "3.10" + - name: Install Dependencies + run: | + python -m pip install --upgrade pip + pip install --requirement requirements.txt + pip install pyinstaller + - name: GitHub Tag + id: tag_version + uses: mathieudutour/github-tag-action@v6.0 + with: + github_token: ${{ github.token }} + - name: Release + uses: softprops/action-gh-release@v0.1.14 + with: + tag_name: ${{ steps.tag_version.outputs.new_tag }} + body: ${{ steps.tag_version.outputs.changelog }}