Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
iosifnicolae2 committed Jul 15, 2024
1 parent 53b1cf4 commit 88b7620
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Create a new release
on:
push:
branches:
- main
jobs:
create_release:
name: Bump tag
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
with:
fetch-depth: '0'
persist-credentials: false
- name: Bump version and push tag
uses: anothrNick/github-tag-action@1.61.0
id: tag_version
env:
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
- name: Create Release
uses: ncipollo/release-action@v1.12.0
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
token: ${{ secrets.ACTIONS_TOKEN }}
2 changes: 2 additions & 0 deletions copier.yml
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
_answers_relpath: ".copier-answers.yml"
_exclude:
- .github

0 comments on commit 88b7620

Please sign in to comment.