question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Missing high-level features from v1 in v2 like `tag_with_ref` and `add_git_labels`

See original GitHub issue

The utility in using the action to me, over just running the docker commands manually, was in the high-level interface offered by helpers in v1 like:

  • add_git_labels
  • tag_with_sha
  • tag_with_ref

These all appear to have disappeared in v2. Are these planned to be brought back?

Doing:

-  name: Build and push
   uses: docker/build-push-action@v2
   with:
     push: true
     tags: user/app:latest

Doesn’t provide a huge benefit over:

- name: Build and push
  run: |
     docker buildx build --push user/app:latest .

Compared to implementing any of the following which requires lots of logic and loops.

  • add_git_labels
  • tag_with_sha
  • tag_with_ref

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Reactions:8
  • Comments:8 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
Surgocommented, Sep 14, 2020

I published a tag_with_sha and tag_with_ref like action 😃

https://github.com/marketplace/actions/generate-smart-tag-for-docker-images

1reaction
crazy-maxcommented, Sep 11, 2020
Read more comments on GitHub >

github_iconTop Results From Across the Web

No results found

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found