1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-11-06 09:19:31 +02:00

Adds plugin actions to the project's CI (#471)

* Adds plugin actions to the project's CI

* Remove the version number from the generated artifact

* Change job name to something more descriptive

* Switch back to workflow_dispatch
This commit is contained in:
Miguel de la Cruz
2021-05-25 19:22:31 +02:00
committed by GitHub
parent f43e4028db
commit b327bc7b8a
7 changed files with 124 additions and 153 deletions

51
.github/workflows/plugin-release.yml vendored Normal file
View File

@@ -0,0 +1,51 @@
name: Plugin-Release
on: workflow_dispatch
jobs:
plugin-release:
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Replace token 1
run: sed -i -e "s,placeholder_rudder_dataplane_url,${{ secrets.RUDDER_DATAPLANE_URL }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
- name: Replace token 2
run: sed -i -e "s,placeholder_rudder_key,${{ secrets.RUDDER_PROD_KEY }},g" ${{ github.workspace }}/server/services/telemetry/telemetry.go
- name: npm install
run: cd webapp; npm install --no-optional
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: 16.1.0
- name: Build webapp
run: make webapp
- name: npm install plugin dependencies
run: cd mattermost-plugin/webapp; npm install --no-optional
- name: Build plugin
run: cd mattermost-plugin; make dist
env:
BUILD_NUMBER: ${{ github.run_id }}
- name: Rename plugin file
run: cd mattermost-plugin/dist; mv focalboard-*.tar.gz mattermost-plugin-focalboard.tar.gz
- name: Upload plugin artifact
uses: actions/upload-artifact@v1
with:
name: mattermost-plugin-focalboard.tar.gz
path: ${{ github.workspace }}/mattermost-plugin/dist/mattermost-plugin-focalboard.tar.gz