Skip to content

Commit

Permalink
ci: add draft release step
Browse files Browse the repository at this point in the history
  • Loading branch information
ivivanov committed Mar 28, 2023
1 parent d4b7c25 commit 5749712
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,27 @@ jobs:
docker_registry: "ghcr.io"
docker_repository: "nolus-protocol"
docker_tag: ${{ github.ref_name }}
# Drafts a release
release:
name: Draft release
runs-on: ubuntu-latest
needs: build
permissions: write-all
steps:
- name: Download artifacts
uses: actions/download-artifact@v3
- name: Display structure of downloaded files
run: ls -R
# temporary using commit as version until it is merged. Updates node version v12 -> v16
- uses: "marvinpinto/action-automatic-releases@6273874b61ebc8c71f1a61b2d98e234cf389b303"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
draft: true
files: |
alpine-linux-alarms-dispatcher
alpine-linux-feeder
nolus-dispatcher-bot-dev.tar
nolus-dispatcher-bot-test.tar
nolus-feeder-bot-dev.tar
nolus-feeder-bot-test.tar

0 comments on commit 5749712

Please sign in to comment.