diff options
author | saicharan0112 | 2022-11-12 13:54:14 +0530 |
---|---|---|
committer | saicharan0112 | 2022-11-12 13:54:14 +0530 |
commit | a14bb8b7c7661a65026eabc4ad42e374e4f8199b (patch) | |
tree | ea166a7879c24f573fa39dfd6304564db7cb2f85 /.github/workflows/release_ubuntu.yml | |
parent | 2d9b58bd48762ca089a537e68cbae38c6b36426f (diff) | |
download | eSim-a14bb8b7c7661a65026eabc4ad42e374e4f8199b.tar.gz eSim-a14bb8b7c7661a65026eabc4ad42e374e4f8199b.tar.bz2 eSim-a14bb8b7c7661a65026eabc4ad42e374e4f8199b.zip |
Notes in the header section of the workflow file for more understanding
Diffstat (limited to '.github/workflows/release_ubuntu.yml')
-rw-r--r-- | .github/workflows/release_ubuntu.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/release_ubuntu.yml b/.github/workflows/release_ubuntu.yml index 1ed41a21..0fc6043b 100644 --- a/.github/workflows/release_ubuntu.yml +++ b/.github/workflows/release_ubuntu.yml @@ -1,10 +1,17 @@ +# By Sai Charan Lanka (@saicharan0112) : Nov 12, 2022 +# This is the workflow to pack the eSim for Ubuntu OS which follows the steps shown in the installer branch and release the zip file which can be uploaded onto the website +# Note: +# 1. Make sure the eSim manual for the version about to release, already exists in the https://static.fossee.in/esim/manuals/ location. Else the release fails. +# 2. To trigger this workflow, create and push tags that start with "v". +# For more info, refer to PR#230 and Issue#211 + + name: Auto release of eSim for Ubuntu OS on: push: tags: - 'v*' # Push events to matching v*, i.e. v2.2, v2.3 etc - workflow_dispatch: jobs: |