Skip to content

Commit

Permalink
Merge pull request #48 from zero-hack-org/task/merge-main
Browse files Browse the repository at this point in the history
fix: github actions step orders
  • Loading branch information
yuya-morimoto authored Aug 27, 2023
2 parents c55a307 + ac5709a commit cd50908
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tag_image_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ jobs:
- name: Ballerina Build 🔧
run: bal build

- name: Latest Tag and Push Image ✨
run: |
docker tag svg_parser:latest ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:latest
docker push ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:latest
- name: Version Tag and Push Image ✨
run: |
docker tag svg_parser:latest ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:${{ env.TAG_NAME }}
docker push ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:${{ env.TAG_NAME }}
- name: Latest Tag and Push Image ✨
run: |
docker tag svg_parser:latest ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:latest
docker push ${{ steps.login-ecr-public.outputs.registry }}/${{ vars.AWS_ECR_SVG_PARSER_REPOSITORY_ID }}/svg_parser:latest
2 changes: 1 addition & 1 deletion Ballerina.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
org = "zero_hack"
name = "svg_parser"
version = "0.6.2"
version = "0.6.3"
distribution = "2201.7.1"

[build-options]
Expand Down

0 comments on commit cd50908

Please sign in to comment.