diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 09:08:28 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-10-16 09:08:28 +0200 |
commit | 185cfed7063c7a9654c180aca126182b58408705 (patch) | |
tree | b7832d37a0ca560e857696b30b89806a936ccce3 /.github | |
parent | workflows/ci: fix warnings, sanitize commands (diff) | |
download | cgitize-185cfed7063c7a9654c180aca126182b58408705.tar.gz cgitize-185cfed7063c7a9654c180aca126182b58408705.zip |
workflows/ci: remove unused steps
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00d6f6b..ffb6131 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -129,9 +129,6 @@ jobs: needs: [test_local, test_example_config, test_docker, publish_docker] runs-on: ubuntu-latest name: 'Publish / PyPI' - env: - # Same rate limit thing: - CGITIZE_GITHUB_TOKEN: '${{ secrets.CGITIZE_GITHUB_TOKEN }}' steps: - name: Checkout uses: actions/checkout@v3 @@ -141,10 +138,6 @@ jobs: python-version: '3.10' - name: Verify package can be installed run: pip install . - - name: Set up ssh-agent - uses: webfactory/ssh-agent@v0.5.3 - with: - ssh-private-key: '${{ secrets.SSH_KEY }}' - name: Install package builder run: pip install --upgrade build - name: Build package |