diff --git a/.github/workflows/ci-publish-pages.yml b/.github/workflows/ci-publish-pages.yml deleted file mode 100644 index 5ea9440bca6..00000000000 --- a/.github/workflows/ci-publish-pages.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: CI-GitHub-Pages - -on: - push: - tags: - - '*' - -jobs: - documentation: - - runs-on: ubuntu-20.04 - strategy: - matrix: - python-version: ["3.10"] - - steps: - - uses: actions/checkout@v3 - - name: Python${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install - run: | - python -m pip install --upgrade pip - python -m pip install tox - - name: Render - run: | - tox -e doc_gh_pages - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./doc/build_gh_pages diff --git a/.github/workflows/ci-publish-to-pypi.yml b/.github/workflows/ci-publish-to-pypi.yml deleted file mode 100644 index ebee7bc37f5..00000000000 --- a/.github/workflows/ci-publish-to-pypi.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI-Publish-To-PyPI - -on: - push: - tags: - - '*' - -jobs: - release: - runs-on: ubuntu-20.04 - strategy: - matrix: - python-version: ["3.10"] - - environment: - name: pypi - url: https://pypi.org/p/kiwi - - permissions: - id-token: write - - steps: - - uses: actions/checkout@v3 - - name: Python${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install - run: | - python -m pip install --upgrade pip - python -m pip install tox - - name: Prepare - run: | - tox -e doc_man,release - - name: Publish - uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/ci-update-build-tests.yml b/.github/workflows/ci-update-build-tests.yml deleted file mode 100644 index d12b7fc4fbc..00000000000 --- a/.github/workflows/ci-update-build-tests.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: CI-Update-Build-Tests - -on: - push: - branches: - - "master" - paths: - - "build-tests/**" - -jobs: - trigger_obs_services: - name: Trigger OBS services connected to build-tests data - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Send API requests to Open Build Service - run: helper/update_obs_services.sh ${{ secrets.OBS_VIRT_APP_IMG }}