Skip to content

Commit b53b330

Browse files
committed
Automatically generate orm-deploy Release associated with Deploy to OCI button
1 parent aec39b4 commit b53b330

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/action-latest-release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'publish-latest-release'
1+
name: 'publish-orm-stack'
22

33
on:
44
# Trigger the workflow on push or pull request,
@@ -12,18 +12,20 @@ on:
1212

1313
jobs:
1414
publish_artifact:
15-
name: 'Publish Artifact as Latest Release'
15+
name: 'Publish Release for ORM Stack'
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v2
19-
- name: 'Generate OCI ORM Stack zip file'
19+
- name: 'Generate ORM Stack zip file'
2020
run: |
2121
cd ${{ github.workspace }}/build-orm
2222
sh -x build.sh
23-
- name: 'Generate pre-release for ORM click to deploy button'
23+
- name: 'Publish Release'
2424
uses: eine/tip@master
2525
with:
2626
token: ${{ secrets.GITHUB_TOKEN }}
27+
#Artifact will be available for download at: https://github.com/<organization>/<repository>/releases/download/<tag>/<zip file>
28+
#E.g. https://github.com/oracle-quickstart/oci-github-actions-runner/releases/download/orm-deploy/orm.zip
2729
tag: 'orm-deploy'
2830
files: |
2931
${{ github.workspace }}/build-orm/orm.zip

0 commit comments

Comments
 (0)