Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ jobs:
uses: "marvinpinto/action-automatic-releases@latest"
if: startsWith(github.ref, 'refs/heads/main')
with:
repo_token: ${{ secrets.PYANSYS_CI_BOT_TOKEN }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: "v${{needs.build.outputs.version}}"
prerelease: true
title: "Release v${{needs.build.outputs.version}}"
Expand Down
28 changes: 0 additions & 28 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,34 +107,6 @@ jobs:
docker-compose down -v
working-directory: ./docker-compose-artifact/docker-compose

end-to-end-tests:
name: End-to-end tests
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ env.MAIN_PYTHON_VERSION }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox tox-gh-actions

- name: Test with tox
run: tox -e py39-witheval
env:
REP_TEST_URL: https://repkube.westeurope.cloudapp.azure.com/dev/rep
REP_TEST_USERNAME: repbuild
REP_TEST_PASSWORD: repbuild

- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/test*.xml'
check_name: End-to-end Test Report

build:
name: Build wheel
runs-on: ubuntu-latest
Expand Down