Skip to content

Commit

Permalink
add: CI steps
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-gnosis committed Sep 24, 2024
1 parent f46a17e commit cc53d71
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Build & Release Gnosis DBT

on:
# pull_request:
# types: [ closed ]
push:
branches:
- master

concurrency:
group: gnosis-dbt-${{ github.ref }}
cancel-in-progress: true

jobs:
build:

# if: github.event.pull_request.merged == true

strategy:
matrix:
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}

steps:

- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'true'

- name: Get Organization Name
id: org_name
run: |
org_name=$(echo "${{ github.repository_owner }}")
echo "Organization Name: $org_name"
echo "org_name=$org_name" >> $GITHUB_OUTPUT
- name: Extract commit
id: commit
uses: prompt/actions-commit-hash@v3

- name: Git Submodule Update
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
- name: Login to GitHub Container Registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ steps.org_name.outputs.org_name }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Latest
run: |
docker build ./docker --tag ghcr.io/${{ steps.org_name.outputs.org_name }}/gnosis-dbt:latest
docker push ghcr.io/${{ steps.org_name.outputs.org_name }}/gnosis-dbt:latest
- name: Push Versioned
run: |
docker build ./docker --tag ghcr.io/${{ steps.org_name.outputs.org_name }}/gnosis-dbt:${{ steps.commit.outputs.short }}
docker push ghcr.io/${{ steps.org_name.outputs.org_name }}/gnosis-dbt:${{ steps.commit.outputs.short }}

0 comments on commit cc53d71

Please sign in to comment.