-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (49 loc) · 1.57 KB
/
release.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Release
# This workflow will draft a release for a plugin when tagged.
# The tag format is <name>/v<version> without the backstage-plugin- prefix.
on:
push:
tags:
- "*/v*"
permissions:
contents: write # For creating releases.
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
split-tag:
runs-on: ubuntu-latest
outputs:
plugin: ${{ steps.split.outputs.plugin }}
version: ${{ steps.split.outputs.version }}
steps:
- env:
TAG: ${{ github.ref_name }}
id: split
run: |
parts=(${TAG//\/v/ })
echo "plugin=${parts[0]}" >> $GITHUB_OUTPUT
echo "version=${parts[1]}" >> $GITHUB_OUTPUT
plugin:
needs: split-tag
runs-on: ubuntu-latest
defaults:
run:
working-directory: plugins/backstage-plugin-${{ needs.split-tag.outputs.plugin }}
name: ${{ needs.split-tag.outputs.plugin }} v${{ needs.split-tag.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn tsc
- run: yarn test
- run: yarn build
# Version it with the version in the tag and upload it to a draft release.
- run: yarn version --new-version ${{ needs.split-tag.outputs.version }}
- run: yarn pack
- uses: softprops/action-gh-release@v1
with:
draft: true
files: plugins/backstage-plugin-${{ needs.split-tag.outputs.plugin }}/*.tgz