Skip to content

Commit

Permalink
update some ui asset details
Browse files Browse the repository at this point in the history
  • Loading branch information
CamDavidsonPilon committed Dec 4, 2023
1 parent 2c18ac7 commit 1b59ffb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
tag: ${{ github.event.release.tag_name }}
overwrite: true

fetch-release:
fetch-pioreactorui-release:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -75,7 +75,7 @@ jobs:
run: |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/pioreactor/pioreactorui/releases/latest)
echo "RELEASE_UI_TAG=$(echo $LATEST_RELEASE | jq -r .tag_name)" >> $GITHUB_ENV
echo "RELEASE_UI_URL=$(echo $LATEST_RELEASE | jq -r .tarball_url)" >> $GITHUB_ENV
echo "RELEASE_UI_URL=https://github.com/pioreactor/pioreactorui/archive/refs/tags/${{ env.RELEASE_UI_TAG }}.tar.gz" >> $GITHUB_ENV
- name: Download Release Tarball
run: |
curl -L $RELEASE_UI_URL -o pioreactorui_${{ env.RELEASE_UI_TAG }}.tar.gz
Expand All @@ -90,7 +90,7 @@ jobs:
zip-asset-upload:
name: 🤐 Zip assets and upload
runs-on: ubuntu-latest
needs: [build, build-deps]
needs: [build, build-deps, fetch-pioreactorui-release]
steps:
- name: Checkout repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pioreactor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# Append "dev" if a dev version
# Append "rc0" if a rc version
# No zero padding!
__version__ = "23.12.4rc0"
__version__ = "23.12.4rc1g"


def _get_hardware_version() -> tuple[int, int] | tuple[int, int, str]:
Expand Down

0 comments on commit 1b59ffb

Please sign in to comment.