From ddac1aacab5afdd3b021e89a0569ee040c00d8e7 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 15 Sep 2024 18:19:39 +0900 Subject: [PATCH] Add release workflow for uploading MergeClip.zip 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. --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..1c6dc2f --- /dev/null +++ b/.github/workflows/release.yml @@ -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