Skip to content

Commit

Permalink
Fix release tarball script
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 committed Sep 30, 2024
1 parent 38af635 commit ad2ccbc
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/release-tarball.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,20 @@ jobs:
with:
path: ${{ github.event.repository.name }}-${{ github.event.release.tag_name }}

- name: Checkout mepo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
repository: GEOS-ESM/mepo
path: mepo
python-version: '3.11'

- name: Pip install mepo
run: |
python -m pip install --upgrade pip
pip install mepo
- name: Run mepo
run : |
cd ${GITHUB_WORKSPACE}/${{ github.event.repository.name }}-${{ github.event.release.tag_name }}
${GITHUB_WORKSPACE}/mepo/mepo clone
mepo clone
- name: Create tarball
run: |
Expand Down

0 comments on commit ad2ccbc

Please sign in to comment.