Skip to content

Commit

Permalink
fix: rearranged actions
Browse files Browse the repository at this point in the history
  • Loading branch information
loydbanks committed Oct 16, 2024
1 parent 921f06c commit 257e244
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/codeartifact-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,6 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Update pyproject.toml version
env:
RELEASE_VERSION: ${{ needs.semantic-release.outputs.release-version }}
run: |
pip install toml-cli
toml set --toml-path pyproject.toml project.version ${{ env.RELEASE_VERSION }}
- name: Set Up Python
uses: actions/setup-python@v5
with:
Expand All @@ -45,8 +38,15 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install build
pip install toml-cli
pip install twine
- name: Update pyproject.toml version
env:
RELEASE_VERSION: ${{ needs.semantic-release.outputs.release-version }}
run: |
toml set --toml-path pyproject.toml project.version ${{ env.RELEASE_VERSION }}
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand Down

0 comments on commit 257e244

Please sign in to comment.