Skip to content

Commit

Permalink
Fix deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
ppouchin authored Apr 10, 2024
1 parent 0e44eec commit 7c372dd
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/planemo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,22 @@ jobs:
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
needs: [ test ]
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: 3.11
- name: Cache Python packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
key: ${{ runner.os }}-pip-py3.11
restore-keys: |
${{ runner.os }}-pip-py
- name: Install dependencies
run: pip install flake8 flake8-import-order planemo Pygments
- name: Check dependencies
run: planemo --version
- name: Deploy
run: planemo shed_update --shed_target toolshed --shed_key_from_env ${{ secrets.SHED_KEY }} --force_repository_creation .
run: planemo shed_update --shed_target toolshed --shed_key ${{ secrets.SHED_KEY }} --force_repository_creation .

0 comments on commit 7c372dd

Please sign in to comment.