You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following code in my github actions. The run command from the first task here shows version 1.0.1, however the AutoTag task is using the version found in package.json which is 1.0.0.
How can I get Auto Tag to use a specific tag version?
- name: Tag Version To Use
run: echo "${{ steps.version_increment.outputs.version }}"
- name: Auto Tag
uses: butlerlogic/[email protected]
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
with:
version: "${{ steps.version_increment.outputs.version }}"`
The setup is being followed from here:
The text was updated successfully, but these errors were encountered:
ThePieMonster
changed the title
Using Manual Version Tag Is Being Ignored
Manual Version Tag Is Being Ignored
Jan 19, 2024
ThePieMonster
changed the title
Manual Version Tag Is Being Ignored
Manual Version Tag Being Ignored
Jan 19, 2024
I have the following code in my github actions. The run command from the first task here shows version 1.0.1, however the AutoTag task is using the version found in package.json which is 1.0.0.
How can I get Auto Tag to use a specific tag version?
The setup is being followed from here:
The text was updated successfully, but these errors were encountered: