Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cd - removed tag actions, appears as if the release stage is tagging #9

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,21 +91,20 @@ jobs:
- name: Publish GitHub Release
uses: softprops/[email protected]
with:
tag_name: "${{ format('{0}{1}', 'v', steps.new_tag.outputs.new_tag) }}"
files: |
project-demo/build/artifacts/release/MyApp.out
ceedling-0.32.0-d76db35.gem
LICENSE

tag_name: "${{ format('{0}{1}', 'v', steps.new_tag.outputs.new_tag) }}"

- name: Git Config
uses: zmynx/github-actions/.github/actions/git/git-config@feature/gha

- name: Git Tag
uses: zmynx/github-actions/.github/actions/git/git-tag@feature/gha
with:
tag: "${{ format('{0}{1}', 'v', steps.new_tag.outputs.new_tag) }}"

# - name: Git Config
# uses: zmynx/github-actions/.github/actions/git/git-config@feature/gha
#
# - name: Git Tag
# uses: zmynx/github-actions/.github/actions/git/git-tag@feature/gha
# with:
# tag: "${{ format('{0}{1}', 'v', steps.new_tag.outputs.new_tag) }}"
#
# - name: Publish image to DockerHub
# uses: docker/[email protected]
# with:
Expand Down
Loading