ci: Enhance Aerospike configuration and testing for strong consistenc… #38
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: "Draft Release" | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| # workflows to pull release artifacts from | |
| snyk-test: | |
| uses: aerospike/aerospike-admin/.github/workflows/snyk-test.yml@master | |
| draft-release-notes: | |
| needs: snyk-test | |
| runs-on: ubuntu-latest | |
| name: Draft Release | |
| steps: | |
| - uses: actions/checkout@v3 | |
| # below steps are for downloading release artifacts | |
| - name: Download Snyk Artifact | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: asadm-snyk.txt | |
| path: artifacts | |
| # finally create the release and upload artifacts | |
| - name: Upload Artifacts to Release Draft | |
| uses: "softprops/action-gh-release@v1" | |
| with: | |
| draft: true | |
| generate_release_notes: true | |
| files: | | |
| artifacts/* |