-
Notifications
You must be signed in to change notification settings - Fork 47
74 lines (66 loc) · 2.24 KB
/
release.arcgis_plugin.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: release arcgis plugin
on:
workflow_dispatch:
inputs:
version:
description: The version you want to assign to the release
type: string
required: true
# TODO: possibly use release branches to perform the release process
# push:
# branches:
# - release/*
# - prerelease/*
# TODO: possibly use release event to perform the release process
# release:
jobs:
config:
uses: ./.github/workflows/config.yaml
check_release_version:
needs: [ config ]
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ needs.config.outputs.node_versions-lts }}
- name: install json util
run: npm i -g json
- name: check service
run: |
[[ $(json version < ./plugins/arcgis/service/package.json) = ${{ inputs.version }} ]] || exit 1
- name: check web-app
run: |
[[ $(json version < ./plugins/arcgis/web-app/package.json) = ${{ inputs.version }} ]] || exit 1
build_and_test-service:
needs: [ check_release_version ]
uses: ./.github/workflows/build_test.arcgis.service.yaml
build_and_test-web-app:
needs: [ check_release_version ]
uses: ./.github/workflows/build_test.arcgis.web-app.yaml
publish_packages:
name: publish packages
needs: [ config, build_and_test-service ]
runs-on: ubuntu-latest
steps:
- name: setup node
uses: actions/setup-node@v3
with:
node-version: ${{ needs.config.outputs.node_versions-lts }}
- name: install json util
run: npm i -g json
- name: download service packages
uses: actions/download-artifact@v3
with:
name: arcgis.service-artifacts
- name: download web-app packages
uses: actions/download-artifact@v3
with:
name: arcgis.web-app-artifacts
- name: publish to package registry
run: |
npm config set -- '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_TOKEN }}
npm publish --access public $(ls -1 ngageoint-mage.arcgis.service-*.tgz)
npm publish --access public $(ls -1 ngageoint-mage.arcgis.web-app-*.tgz)