Skip to content

Commit

Permalink
workflow on publishing a release
Browse files Browse the repository at this point in the history
  • Loading branch information
nandarshan authored and DImuthuUpe committed Feb 22, 2024
1 parent 5434571 commit 517b496
Showing 1 changed file with 13 additions and 27 deletions.
40 changes: 13 additions & 27 deletions .github/workflows/release_on_tag_push.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions
on:
push:
tags:
- '*'
release:
types: [published]

jobs:
Explore-GitHub-Actions:
Expand All @@ -13,6 +12,10 @@ jobs:
uses: actions/checkout@v4
- run: echo "The ${{ github.repository }} repository has been cloned to the runner."

- name: Print the tag name
run: |
echo ${{ github.ref }}
- name: List files in the repository
run: |
ls ${{ github.workspace }}
Expand All @@ -24,31 +27,14 @@ jobs:
run: |
ls ${{ github.workspace }}
- name: Create Release to get an id
id: create_release_id
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}

- name: Upload Zip File 1
uses: actions/upload-release-asset@v1
- name: Upload file 1
run: |
gh release upload ${{github.event.release.tag_name}} agent/service/target/MFT-Agent-0.01-bin.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release_id.outputs.upload_url }}
asset_path: agent/service/target/MFT-Agent-0.01-bin.zip
asset_name: MFT-Agent-0.01-bin.zip
asset_content_type: application/zip

- name: Upload Zip File 2
uses: actions/upload-release-asset@v1
- name: Upload file 2
run: |
gh release upload ${{github.event.release.tag_name}} standalone-service/target/Standalone-Service-0.01-bin.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release_id.outputs.upload_url }}
asset_path: standalone-service/target/Standalone-Service-0.01-bin.zip
asset_name: Standalone-Service-0.01-bin.zip
asset_content_type: application/zip
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 517b496

Please sign in to comment.