Skip to content

chore: trigger pipeline #6

chore: trigger pipeline

chore: trigger pipeline #6

name: Server Graffiti Production Pipeline
on:
push:
paths:
- 'server/**'
branches:
- master
release:
types: [created]
env:
ENV: "prd"
APP: "graffiti-server"
concurrency: graffiti_production_environment
jobs:
main:
runs-on: ubuntu-latest
name: Server Graffiti Production Pipeline
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
- uses: GoogleCloudPlatform/release-please-action@v3
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: node
path: server
package-name: ""
changelog-types: '[{"type":"feat","section":"Features","hidden":false},{"type":"fix","section":"Bug Fixes","hidden":false},{"type":"ci","section":"CI / CD","hidden":false},{"type":"test","section":"Testing","hidden":false},{"type":"refactor","section":"Refactorings","hidden":false},{"type":"chore","section":"Miscellaneous","hidden":false}]'
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@master
with:
install: true
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-${{ env.ENV }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-${{ env.ENV }}-buildx
- name: Log in to dockerhub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_PASS }}
- name: Extract metadata for docker
if: |
github.event_name == 'push' ||
startsWith(github.ref, 'refs/tags/v')
id: meta
uses: docker/metadata-action@v3
with:
images: aeternity/graffiti-server
tags: |
type=raw,value=latest,enable=${{ endsWith(GitHub.ref, 'master') }}
type=raw,value=${{ steps.release.outputs.tag_name }},enable=${{ endsWith(GitHub.ref, 'master') }}
type=ref,event=tag
type=ref,event=pr
- name: Build and push docker image
if: github.event_name == 'push' || startsWith(github.ref, 'refs/tags/v')
uses: docker/build-push-action@v2
with:
context: ./server
file: ./server/Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new
- name: Move cache
if: github.event_name == 'pull_request' && github.event.action == 'opened' || github.event.action == 'synchronize'
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
- uses: actions/checkout@v2
with:
repository: aeternity/gitops-apps.git
ref: prd
persist-credentials: false
fetch-depth: 0
- name: Production Deploy
if: ${{ steps.release.outputs.release_created }}
uses: aeternity/ae-github-actions/argocd-deploy@v4
with:
url-prefix: ${{ steps.release.outputs.tag_name }}
env: ${{ env.ENV }}
app: ${{ env.APP }}
- name: Push changes
uses: ad-m/github-push-action@master
with:
repository: aeternity/gitops-apps
github_token: ${{ secrets.BOT_GITHUB_TOKEN }}
branch: prd