Skip to content

Commit

Permalink
Add release workflow for uploading MergeClip.zip
Browse files Browse the repository at this point in the history
This commit introduces a GitHub Actions workflow that triggers on push or pull requests to the `1.x` branch and on manual dispatch. It uploads a file named `MergeClip.zip` as an artifact using the `actions/upload-artifact` action.
  • Loading branch information
koriym committed Sep 15, 2024
1 parent 8495b25 commit ddac1aa
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: Upload MergeClip.zip as Artifact

on:
push:
branches: [ 1.x ]
pull_request:
branches: [ 1.x ]
workflow_dispatch:

jobs:
upload-artifact:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Upload MergeClip.zip as artifact
uses: actions/upload-artifact@v2
with:
name: MergeClip
path: MergeClip.zip
if-no-files-found: error

0 comments on commit ddac1aa

Please # to comment.