Skip to content

Commit

Permalink
Missed a few semver references
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson committed Jan 7, 2025
1 parent a9fdf6a commit 77ca9af
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions github/js-frontend/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,17 +192,17 @@ runs:
# The Docker image is built and pushed.
# - name: Build, tag, and push image to Dockerhub
# run: |
# docker build -t octopussamples/octopub-frontend:${{ steps.determine_version.outputs.semVer }} .
# docker push octopussamples/octopub-frontend:${{ steps.determine_version.outputs.semVer }}
# docker tag octopussamples/octopub-frontend:${{ steps.determine_version.outputs.semVer }} octopussamples/octopub-frontend:latest
# docker build -t octopussamples/octopub-frontend:${{ env.PACKAGE_VERSION }} .
# docker push octopussamples/octopub-frontend:${{ env.PACKAGE_VERSION }}
# docker tag octopussamples/octopub-frontend:${{ env.PACKAGE_VERSION }} octopussamples/octopub-frontend:latest
# docker push octopussamples/octopub-frontend:latest
# shell: bash
# working-directory: js/frontend

# The MySQL Docker image is built and pushed.
- name: Build, tag, and push image to Dockerhub
run: |
#docker buildx build -f Dockerfile -t octopussamples/octopub-frontend:${{ steps.determine_version.outputs.semVer }} -t octopussamples/octopub-frontend:latest --platform=linux/amd64,linux/arm64 --push .
#docker buildx build -f Dockerfile -t octopussamples/octopub-frontend:${{ env.PACKAGE_VERSION }} -t octopussamples/octopub-frontend:latest --platform=linux/amd64,linux/arm64 --push .
docker buildx build -f Dockerfile -t octopussamples/octopub-frontend:${{ env.PACKAGE_VERSION }} -t octopussamples/octopub-frontend:latest --platform=linux/amd64,linux/arm64 --push .
shell: bash
working-directory: js/frontend
Expand All @@ -228,7 +228,7 @@ runs:
- name: Build and push static web package
run: |
pushd js/frontend/build
#zip -r ../octopub-frontend.${{ steps.determine_version.outputs.semVer }}.zip .
#zip -r ../octopub-frontend.${{ env.PACKAGE_VERSION }}.zip .
zip -r ../octopub-frontend.${{ env.PACKAGE_VERSION }}.zip .
popd
Expand Down

0 comments on commit 77ca9af

Please sign in to comment.