Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
Expand Down Expand Up @@ -81,25 +81,25 @@ jobs:
uses: actions/checkout@v6.0.2

- name: Download built artifacts
id: download-artifacts
uses: actions/download-artifact@v8.0.1
with:
path: dist
pattern: euqalyptus-*
merge-multiple: true

- name: Create GitHub Release and upload artifacts
uses: softprops/action-gh-release@v3.0.0
- name: Create Release in GitHub
uses: softprops/action-gh-release@v3
with:
name: "Release ${{ github.ref_name }}"
tag_name: ${{ github.ref_name }}
files: |
dist/*.whl
${{ steps.download-artifacts.outputs.download-path }}/*.whl
${{ steps.download-artifacts.outputs.download-path }}/*.tgz

- name: Upload python wheels to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.14

release-test:
name: Publish Release
name: Publish Release Test PyPI
needs: [ build-and-test ]
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch'
Expand All @@ -121,13 +121,13 @@ jobs:
pattern: euqalyptus-*
merge-multiple: true

- name: Create GitHub Release and upload artifacts
uses: softprops/action-gh-release@v3.0.0
with:
name: "Release ${{ github.ref_name }}"
draft: true
files: |
dist/*.whl
# - name: Create GitHub Release and upload artifacts
# uses: softprops/action-gh-release@v3.0.0
# with:
# name: "Release ${{ github.ref_name }}"
# draft: true
# files: |
# dist/*.whl

- name: Upload python wheels to PyPI
uses: pypa/gh-action-pypi-publish@release/v1.14
Expand Down