Skip to content

Debug CICD

Debug CICD #3

Workflow file for this run

name: Release
# on:
# push:
# tags:
# - "v?.?"
# branches:
# - master
on: [push]
jobs:
build_docs:
# # https://github.com/orgs/community/discussions/26238
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
# needs: "Commit push"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Install task
run: curl -sL https://taskfile.dev/install.sh | sh
- name: Build documentation
run: ./bin/task build_docs
- name: Upload static files as artifact
uses: actions/upload-pages-artifact@v3
with:
path: build/docs
# deploy_docs:
# # if: ${{ github.event.workflow_run.conclusion == 'success' }}
# needs: build_docs
# runs-on: ubuntu-latest
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# permissions:
# pages: write
# id-token: write
# steps:
# - name: Deploy to GitHub Pages
# uses: actions/deploy-pages@v4
build_exe:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"

Check failure on line 49 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 49, Col: 12): Job 'build_exe' depends on unknown job 'Commit push'. .github/workflows/release.yaml (Line: 74, Col: 12): Job 'testpypi_publish' depends on unknown job 'Commit push'.
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Install pyinstaller
# Pyinstaller restricts the maximum Python version to use, so don't add it to pyproject.toml to avoid the
# the same restriction for the package.
run: poetry run pip install pyinstaller
- name: Build executable
run: poetry run pyinstaller --name pyzkaccess --onefile pyzkaccess/main.py
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: pyzkaccess.exe
path: dist/pyzkaccess.exe
if-no-files-found: error
testpypi_publish:
# if: ${{ github.event.workflow_run.conclusion == 'success' }}
needs: "Commit push"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- run: poetry config repositories.testpypi https://test.pypi.org/legacy/
- name: Publish package
run: poetry publish -r testpypi --build
env:
POETRY_PYPI_TOKEN_TESTPYPI: ${{ secrets.TESTPYPI_TOKEN }}
# pypi_publish:
# # if: ${{ github.event.workflow_run.conclusion == 'success' }}
# runs-on: ubuntu-latest
# needs: test_pypi_publish
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# - uses: abatilo/actions-poetry@v2
# - name: Install dependencies
# run: poetry install
# - name: Publish package
# run: poetry publish --build
# env:
# POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}