Skip to content

Commit

Permalink
added release action
Browse files Browse the repository at this point in the history
  • Loading branch information
Alcino Van Rooyen committed Jun 9, 2023
1 parent 81f8054 commit cab1228
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

on:
push:
tags:
- "v*.*.*"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: "CHANGELOG.txt"
name: "Print.App - PrestaShop 1.7.x - ${{ github.ref_name }}"

0 comments on commit cab1228

Please sign in to comment.