Migrate from CircleCI to Github Actions (#173)
CI/CD reusable workflows in Github Actions for Plugin software lifecycle Ticket: https://mattermost.atlassian.net/browse/CLD-4816
This commit is contained in:
parent
e7fd65fd4e
commit
c0b3c8b760
4 changed files with 37 additions and 12 deletions
18
.github/workflows/cd.yml
vendored
Normal file
18
.github/workflows/cd.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: cd
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["ci"]
|
||||
branches-ignore: ["*"]
|
||||
types:
|
||||
- completed
|
||||
push:
|
||||
tags:
|
||||
- "^v.*"
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
plugin-cd:
|
||||
uses: mattermost/actions-workflows/.github/workflows/plugin-cd.yml@main
|
||||
secrets: inherit
|
Reference in a new issue