Skip to content

Commit

Permalink
Create createRelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignacio Bonafonte authored Jan 18, 2024
1 parent 8b1b833 commit 36e61ac
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/createRelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This workflow will build a Swift project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift

name: Create release

on:
release:
types: [created]

jobs:
release:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Get the tag version
id: tag_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Update version
run:

0 comments on commit 36e61ac

Please sign in to comment.