make rococo relaychain work as shielding target (#1546) #9
Workflow file for this run
This file contains 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: Release - Publish draft | |
on: | |
push: | |
tags: | |
# Catches only v1.2.3 (-dev,-rc1 etc won't be released as SDK) | |
- v[0-9]+.[0-9]+.[0-9]+ | |
jobs: | |
publish-draft-release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
path: worker | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0.0 | |
- name: Download srtool json output | |
uses: actions/download-artifact@v3 | |
- name: Prepare tooling | |
run: | | |
cd worker/scripts/changelog | |
gem install bundler changelogerator:0.9.1 | |
bundle install | |
changelogerator --help | |
URL=https://github.com/chevdor/tera-cli/releases/download/v0.2.1/tera-cli_linux_amd64.deb | |
wget $URL -O tera.deb | |
sudo dpkg -i tera.deb | |
tera --version | |
- name: Generate release notes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEBUG: 1 | |
PRE_RELEASE: ${{ github.event.inputs.pre_release }} | |
run: | | |
find ${{env.GITHUB_WORKSPACE}} -type f -name "*_srtool_output.json" | |
cd worker/scripts/changelog | |
./bin/changelog ${GITHUB_REF} | |
ls -al release-notes.md | |
ls -al context.json | |
- name: Archive artifact context.json | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-notes-context | |
path: | | |
worker/scripts/changelog/context.json | |
**/*_srtool_output.json | |
- name: Create draft release | |
id: create-release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: SDK ${{ github.ref }} | |
body_path: ./worker/scripts/changelog/release-notes.md | |
draft: true |