Skip to content

Commit

Permalink
add tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
rustam810 committed Nov 1, 2023
1 parent 29aaba4 commit b28405a
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Create Tag on Master Merge

on:
push:
branches:
- e8
- 3.6.5-e8

jobs:
create_tag:
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3

- name: Read version from file
id: version
run: echo "version=$(cat version)" >> $GITHUB_OUTPUT

- name: Create tag
uses: rickstaa/action-create-tag@v1
id: "tag_create"
with:
tag: ${{ steps.version.outputs.version }}
force_push_tag: true

0 comments on commit b28405a

Please sign in to comment.