Skip to content

Commit

Permalink
pipeline delivery drfat
Browse files Browse the repository at this point in the history
  • Loading branch information
djengua committed Dec 18, 2023
1 parent da6fa55 commit 5887cb1
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,37 @@ jobs:
with:
name: reports
path: reports
deliver:
name: Release
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Download binay
uses: actions/download-artifact@v2
with:
name: api
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: Stilll in experimentation phase
draft: true
prerelease: true
- name: Upload Release Binary
uses: actions/upload-release-assets@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
with:
upload_url: ${{steps.create_release.outputs.upload_url}}
assets_path: api
assets_name: api
asset_content_type: application/octet-stream
build:
name: Build App
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5887cb1

Please sign in to comment.