Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
Alignment for templated release process (#2)
Browse files Browse the repository at this point in the history
* [feat] Release Process template
Introducing all changes required to align with our release process

* [feat] add dist target
* [feat] GithubActions Update to use new release
* [fix] increase golangci-lint timeout
* [chore] update .gitignore with .vscode exclude
* [feat] Addition of S3 upload target s3-release
  • Loading branch information
phoinixgrr authored Jun 23, 2022
1 parent 8214ef3 commit 4f73a62
Show file tree
Hide file tree
Showing 5 changed files with 411 additions and 149 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fetch-depth: 0

- name: ci/check-style
run: make check-style
run: make lint

test:
runs-on: ubuntu-latest
Expand All @@ -32,14 +32,3 @@ jobs:

- name: ci/test
run: make test

build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: ci/build
run: make docker-build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

# VSCode
.history
.vscode

# Bin
build/_output/*
Expand Down
9 changes: 9 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---

include:
- project: 'mattermost/ci/pipelines'
ref: 'master'
file: 'default.yml'
- project: 'mattermost/ci/pipelines'
ref: 'master'
file: '${CI_PROJECT_NAME}/gitlab-ci.yml'
Loading

0 comments on commit 4f73a62

Please sign in to comment.