mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
Update release workflow to comment out staging tag build step
- Commented out the staging tag build and push step in the GitHub Actions release workflow, indicating that it should be uncommented when a staging tag is available. - This change helps prevent errors during the release process while maintaining the structure for future implementation of the staging tag functionality.
This commit is contained in:
@@ -562,22 +562,23 @@ jobs:
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push staging tag
|
||||
uses: docker/build-push-action@v6
|
||||
with:
|
||||
context: .
|
||||
file: Dockerfile
|
||||
push: true
|
||||
tags: |
|
||||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:staging-${{ needs.prepare-release.outputs.tag }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
labels: |
|
||||
org.opencontainers.image.title=openhuman-core
|
||||
org.opencontainers.image.description=OpenHuman core JSON-RPC server
|
||||
org.opencontainers.image.version=${{ needs.prepare-release.outputs.version }}
|
||||
org.opencontainers.image.source=https://github.com/tinyhumansai/openhuman
|
||||
org.opencontainers.image.revision=${{ needs.prepare-release.outputs.sha }}
|
||||
# TODO: Uncomment this when we have a staging tag
|
||||
# - name: Build and push staging tag
|
||||
# uses: docker/build-push-action@v6
|
||||
# with:
|
||||
# context: .
|
||||
# file: Dockerfile
|
||||
# push: true
|
||||
# tags: |
|
||||
# ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:staging-${{ needs.prepare-release.outputs.tag }}
|
||||
# cache-from: type=gha
|
||||
# cache-to: type=gha,mode=max
|
||||
# labels: |
|
||||
# org.opencontainers.image.title=openhuman-core
|
||||
# org.opencontainers.image.description=OpenHuman core JSON-RPC server
|
||||
# org.opencontainers.image.version=${{ needs.prepare-release.outputs.version }}
|
||||
# org.opencontainers.image.source=https://github.com/tinyhumansai/openhuman
|
||||
# org.opencontainers.image.revision=${{ needs.prepare-release.outputs.sha }}
|
||||
|
||||
# =========================================================================
|
||||
# Phase 4: Publish the draft release (waits for ALL build phases)
|
||||
|
||||
Reference in New Issue
Block a user