Skip to content
Closed
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
33 changes: 20 additions & 13 deletions .github/workflows/python_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,19 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Sleep for 10m to wait released is completely finished (unix)
if: runner.os != 'Windows'
run: sleep 600
shell: bash

# - name: GitHub Tag Name
# run: |
# echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
# echo "Tag name from github.ref_name: ${{ github.ref_name }}"
# echo ${{ github.event.release.tag_name }}

- name: Sleep for 10m to wait released is completely finished (windows)
if: runner.os == 'Windows'
run: Start-Sleep -s 600
shell: powershell

- uses: robinraju/release-downloader@v1.9
with:
repository: "fixstars/ion-kit"
latest: false
fileName: "ion-kit*"
tag: ${{ github.event.release.tag_name }}
Expand Down Expand Up @@ -107,17 +110,21 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Sleep for 10m to wait released is completely finished (unix)
if: runner.os != 'Windows'
run: sleep 600
shell: bash


- name: Sleep for 10m to wait released is completely finished (windows)
if: runner.os == 'Windows'
run: Start-Sleep -s 600
shell: powershell

# - name: GitHub Tag Name
# run: |
# echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
# echo "Tag name from github.ref_name: ${{ github.ref_name }}"
# echo ${{ github.event.release.tag_name }}

- uses: robinraju/release-downloader@v1.9
with:
repository: "fixstars/ion-kit"
latest: true
latest: false
fileName: "ion-kit*"
tag: ${{ github.event.release.tag_name }}

Expand Down
Loading