Skip to content

Commit

Permalink
Cleanup workflows (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwiatekus authored Jan 24, 2024
1 parent e77723e commit 8f4f3e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ jobs:
fetch-depth: 0
ref: ${{ github.ref_name }}

- name: Create lightweight tag
run: |
git tag ${{ github.event.inputs.name }}
git push origin ${{ github.event.inputs.name }}
- name: Create draft release
id: create-draft
env:
Expand All @@ -79,11 +84,6 @@ jobs:
RELEASE_ID=$(./.github/scripts/release-draft.sh ${{ github.event.inputs.name }})
echo "release_id=$RELEASE_ID" >> $GITHUB_OUTPUT
- name: Create lightweight tag
run: |
git tag ${{ github.event.inputs.name }}
git push origin ${{ github.event.inputs.name }}
- name: Create release assets
id: create-assets
env:
Expand Down
1 change: 0 additions & 1 deletion module-config-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ channel: <this-will-be-autofilled>
version: <this-will-be-autofilled>
manifest: warden.yaml
moduleRepo: https://github.com/kyma-project/warden.git
moduleRepoTag: <this-will-be-autofilled>
mandatory: true

0 comments on commit 8f4f3e1

Please sign in to comment.