This is an automated email from the ASF dual-hosted git repository.
dimuthuupe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-mft.git
The following commit(s) were added to refs/heads/master by this push:
new 484f599 on tag create yaml
484f599 is described below
commit 484f5997c9478ce09df1da929ad3daca659ad318
Author: nandarshan <[email protected]>
AuthorDate: Wed Jan 31 14:59:57 2024 -0500
on tag create yaml
---
.github/workflows/release_on_tag_push.yml | 47 +++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+)
diff --git a/.github/workflows/release_on_tag_push.yml
b/.github/workflows/release_on_tag_push.yml
new file mode 100644
index 0000000..24394df
--- /dev/null
+++ b/.github/workflows/release_on_tag_push.yml
@@ -0,0 +1,47 @@
+name: GitHub Actions Demo
+run-name: ${{ github.actor }} is testing out GitHub Actions
+on:
+ push:
+ tags:
+ - '*'
+
+jobs:
+ Explore-GitHub-Actions:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Check out repository code
+ uses: actions/checkout@v4
+ - run: echo "The ${{ github.repository }} repository has been cloned to
the runner."
+
+ - name: List files in the repository
+ run: |
+ ls ${{ github.workspace }}
+
+ - run: echo "This job's status is ${{ job.status }}."
+ - run: mvn clean install
+
+ - name: List files in the repository
+ run: |
+ ls ${{ github.workspace }}
+
+ - name: Upload more zips
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file: agent/service/target/MFT-Agent-0.01-bin.zip
+ asset-name: MFT-Agent-0.01-bin.zip
+ tag: ${{ github.ref }}
+ overwrite: true
+ body: "Uploading more zips"
+
+ - name: Upload more zips
+ uses: svenstaro/upload-release-action@v2
+ with:
+ repo_token: ${{ secrets.GITHUB_TOKEN }}
+ file: standalone-service/target/Standalone-Service-0.01-bin.zip
+ asset-name: Standalone-Service-0.01-bin.zip
+ tag: ${{ github.ref }}
+ overwrite: true
+ body: "Uploading more zips"
+
+