Skip to content

Commit

Permalink
✨ chore(release): update release workflow (#2)
Browse files Browse the repository at this point in the history
## 💌 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.
  • Loading branch information
DariuszPorowski authored Apr 17, 2023
1 parent 27c1499 commit 072c051
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/workflow.release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ on:
tags:
- "v*.*.*"

# permissions:
# contents: write
concurrency:
group: ${{ format('{0}-{1}', github.event_name, github.ref) }}
cancel-in-progress: false
Expand Down Expand Up @@ -54,6 +52,9 @@ jobs:
permissions:
contents: write
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -89,6 +90,9 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 072c051

Please sign in to comment.