Skip to content

Do not fail on find commands #47

Do not fail on find commands

Do not fail on find commands #47

name: Build and Publish Marketplace
on:
push:
jobs:
build:
runs-on: ubuntu-22.04
container: cimg/go:1.19
defaults:
run:
shell: bash
steps:
- name: build/checkout-repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
fetch-depth: 0
ref: production
- name: build/ensure-master-exists
run: git rev-parse --verify master >/dev/null 2>&1 || git branch master origin/master
- name: build/check-style
run: make check-style
- name: build/test
run: make test
- name: build/build
run: make build
- name: build/check-uncommitted-changes
run: |
# Assert that 'git status --porcelain' does not produce output
[ -z "$(git status --porcelain)" ] || {
echo "ERROR: uncommitted changes"
git status --porcelain
exit 1
}
- name: build/persist-build
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: marketplace-build
path: dist/
retention-days: 2
deploy:
if: ${{ github.repository == 'mattermost/mattermost-marketplace' && (github.ref_name == 'cld-6708-test-deploy' || github.ref_name == 'production') }}
runs-on: ubuntu-22.04
container: node:20
needs:
- build
defaults:
run:
shell: bash
env:
AWS_DEFAULT_REGION: us-east-1
steps:
- name: build/checkout-repo
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- name: deploy/install-dependencies
run: npm i -g "serverless@<4.0.0"
- name: deploy/download-build
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
with:
name: marketplace-build
path: dist/
- name: deploy/master-branch
if: ${{ github.ref_name == 'cld-6708-test-deploy' }}
env:
AWS_ACCESS_KEY_ID: ${{ secrets.MM_MARKETPLACE_AWS_ACCESS_KEY_ID_STAGING }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MM_MARKETPLACE_AWS_SECRET_ACCESS_KEY_STAGING }}
run: |
serverless deploy function -f server --stage staging --verbose
find ${HOME}/.serverless || :
find /__w/_temp/_github_home/.serverless || :
env | grep serverless || :
- name: deploy/production-branch
if: ${{ github.ref_name == 'production' }}
env:
AWS_ACCESS_KEY_ID: ${{ secrets.MM_MARKETPLACE_AWS_ACCESS_KEY_ID_PRODUCTION }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.MM_MARKETPLACE_AWS_SECRET_ACCESS_KEY_PRODUCTION }}
run: serverless deploy function -f server --stage production --verbose
- name: deploy/persist-lambda-artifact
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
with:
name: marketplace-lambda-artifact
path: .serverless/mattermost-marketplace.zip
retention-days: 7