diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index b3d37cfcc..4407feafa 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -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}}" diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index b1d761413..6825370da 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -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