Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit 072c051

Browse files
✨ chore(release): update release workflow (#2)
## 💌 Description This commit updates the release workflow by adding additional steps to the workflow and removing unnecessary steps. The changes aim to improve the efficiency and reliability of the release process. ## 🩹 Related issue <!-- If your PR refers to a related issue, link it here. --> Fixes: # ## 🏗️ Type of change <!-- Mark with an `x` all the checkboxes that apply (like `[x]`) --> - [ ] 📚 Examples / docs / tutorials / dependencies update - [x] 🐛 Bug fix (non-breaking change which fixes an issue) - [ ] 🥂 Improvement (non-breaking change which improves an existing feature) - [ ] 🚀 New feature (non-breaking change which adds functionality) - [ ] 💥 Breaking change (fix or feature that would cause existing functionality to change) - [ ] 🔐 Security fix - [ ] ⬆️ Dependencies update ## ✅ Checklist <!-- Mark with an `x` all the checkboxes that apply (like `[x]`) --> - [ ] I've read the [`CODE_OF_CONDUCT.md`](https://github.com/DariuszPorowski/chatgpt-pre-commit-hooks/blob/main/CODE_OF_CONDUCT.md) document. - [ ] I've read the [`CONTRIBUTING.md`](https://github.com/DariuszPorowski/chatgpt-pre-commit-hooks/blob/main/CONTRIBUTING.md) guide. - [ ] I've written tests for all new methods and classes that I created. - [ ] I've written the docstring in Google format for all the methods and classes that I used.
1 parent 27c1499 commit 072c051

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/workflow.release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
tags:
77
- "v*.*.*"
88

9-
# permissions:
10-
# contents: write
119
concurrency:
1210
group: ${{ format('{0}-{1}', github.event_name, github.ref) }}
1311
cancel-in-progress: false
@@ -54,6 +52,9 @@ jobs:
5452
permissions:
5553
contents: write
5654
steps:
55+
- name: Checkout Repo
56+
uses: actions/checkout@v3
57+
5758
- name: Setup Python
5859
uses: actions/setup-python@v4
5960
with:
@@ -89,6 +90,9 @@ jobs:
8990
- name: Checkout Repo
9091
uses: actions/checkout@v3
9192

93+
- name: Checkout Repo
94+
uses: actions/checkout@v3
95+
9296
- name: Setup Python
9397
uses: actions/setup-python@v4
9498
with:

0 commit comments

Comments
 (0)