Skip to content

170 Call Gitlab CI job to Automate Runtime Release #4

170 Call Gitlab CI job to Automate Runtime Release

170 Call Gitlab CI job to Automate Runtime Release #4

Workflow file for this run

# This action triggers a GitLab CI job that performs the following:
# * Srtool Check
# * Subwasm info of the compressed wasm file
# * Generate Release Notes
# * Propose a Parachain Upgrade
name: Release and Propose an Upgrade
#on:
# pull_request:
# types:
# - closed
# branches:
# - 'main'
on:
pull_request:
branches:
- main
jobs:
release_check:
# This job will only run if:
# * the pull request is closed and merged to main branch;
# * the pull request has the "release:" in its title
# if: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'release:') }}
name: ${{ matrix.chain }} need new release
strategy:
fail-fast: true
matrix:
chain: ["AMPLITUDE"]
# chain: ["AMPLITUDE", "PENDULUM"]
# shouldReleaseAmp:
# - ${{ contains(github.event.pull_request.title, 'amplitude') }}
# shouldReleasePen:
# - ${{ contains(github.event.pull_request.title, 'pendulum') }}
# exclude:
# - shouldReleaseAmp: false
# chain: "AMPLITUDE"
# - shouldReleasePen: false
# chain: "PENDULUM"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.ref }}
fetch-depth: 0
- id: string
uses: ASzc/change-string-case-action@v6
with:
string: ${{ matrix.chain }}
- name: Set environment variable
id: set-env
run: |
echo "${{ steps.string.outputs.uppercase }}=Y" >> $GITHUB_ENV
- name: Print environment variable
run: |
echo "${{ format('${0}', steps.string.outputs.uppercase ) }}"
- name: trigger gitlab
uses: eic/trigger-gitlab-ci@v1
with:
url: https://gitlab.com
project_id: 56492543
token: ${{ secrets.GITLABAPI }}
ref_name: main
variables: |
AMPLITUDE: Y