Skip to content

Commit

Permalink
Adjust download artifact action
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Hadley committed Jun 9, 2023
1 parent 6bff345 commit 7e5fd77
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
push:
branches:
- main
- develop
# - develop
pull_request:
branches:
- main
- develop
# - develop

env:
PYTHON_VERSION: "3.10"
Expand All @@ -19,13 +19,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3

- name: Install Poetry
run: pipx install poetry==${{ env.POETRY_VERSION }}

- name: Set up Python with Poetry cache
uses: actions/setup-python@v4
uses: actions/setup-python@v4.6.1
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3.5.3

- name: Install Poetry
run: pipx install poetry==${{ env.POETRY_VERSION }}
Expand All @@ -26,7 +26,7 @@ jobs:
run: poetry build

- name: Upload package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v3.1.2
with:
name: paramdb-dist
path: dist
Expand All @@ -39,9 +39,10 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v3.0.2
with:
name: paramdb-dist
path: dist

- name: Display structure of downloaded files
run: ls -R

0 comments on commit 7e5fd77

Please sign in to comment.