Skip to content

Commit

Permalink
Merge pull request #1 from geeshta/development
Browse files Browse the repository at this point in the history
Added github workflow
  • Loading branch information
geeshta authored May 25, 2024
2 parents 5f1f419 + 0d45324 commit cda37ec
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create release

on:
push:
tags:
- "*"

jobs:
create_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Package plugin
run: |
zip -r opencart_gopay.ocmod.zip *
- name: Release
uses: softprops/action-gh-release@v2
with:
files: opencart_gopay.ocmod.zip

0 comments on commit cda37ec

Please sign in to comment.