Skip to content

Commit

Permalink
Create sesam-community-ci-cd.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GabriellCVig authored Jul 20, 2021
1 parent 7291ed6 commit c100b92
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/sesam-community-ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit c100b92

Please sign in to comment.