-
Notifications
You must be signed in to change notification settings - Fork 7
44 lines (38 loc) · 1.33 KB
/
sesam-community-ci-cd.yml
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
name: SesamCommunity CI&CD
on:
pull_request:
push:
paths-ignore:
- '**.md'
- '**.rst'
branches:
- '**'
tags-ignore:
- '**'
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Docker Login
if: startsWith( github.ref, 'refs/tags/') == true || startsWith(github.ref, 'refs/heads/master') == true
uses: docker/login-action@v1.8.0
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Checkout
uses: actions/checkout@v2
- name: Docker build/push
env:
GITHUB_REPO: ${{ github.repository }}
GITHUB_BASE_REF: ${{ github.base_ref }}
GITHUB_REF: ${{ github.ref }}
GITHUB_SHA: ${{ github.sha }}
GITHUB_RUN_NUMBER: ${{ github.run_number }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
# DOCKER_ORGNAME: define DOCKER_ORGNAME secret to push to organization namespace that DOCKER_USERNAME has access to
DOCKER_ORGNAME: ${{ secrets.DOCKER_ORGNAME }}
# DOCKER_REPO_NAME: uncomment_and_set_to_docker_repo_name_if_different_from_github_repoa_name
run: bash <(curl -s https://raw.githubusercontent.com/sesam-community/guidelines/master/git_action.sh)
shell: bash