Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/test-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ jobs:
# Delete local tag if it exists
git tag -d LAB_08 2>/dev/null || true
# Delete remote tag if it exists
git push origin :refs/tags/LAB_08 2>/dev/null || true
git push origin --delete refs/tags/LAB_08 2>/dev/null || true

- name: Create and push new tag
run: |
git tag LAB_08
git push origin refs/tags/LAB_08
git push origin refs/tags/LAB_08:refs/tags/LAB_08
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ node_modules/
container_logs/
.next/
mongodb_data_container/
coverage/
coverage/
.vercel
.env*.local
Loading