Skip to content

Commit

Permalink
Migrate circleci to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmota committed Feb 14, 2024
1 parent f39642f commit be8110f
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 55 deletions.
55 changes: 0 additions & 55 deletions .circleci/config.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Build and Push Merkle Rewards Worker Docker Image

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
environment: docker
env:
DOCKER_IMAGE: hopprotocol/merkle-drop-framework
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build application Docker image
uses: docker/build-push-action@v5
with:
context: ./backend/
file: ./backend/Dockerfile
build-args: GIT_REV=${{ github.sha }}
tags: app
load: true
push: false

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASS }}

- name: Push Merkle Rewards Worker Docker image to Docker Hub
run: |
BRANCH=${GITHUB_REF##*/}
BRANCH=$(echo $BRANCH | sed 's/\//-/g')
docker tag app $DOCKER_IMAGE:${{ github.sha }}
docker tag app $DOCKER_IMAGE:$BRANCH
docker push $DOCKER_IMAGE:${{ github.sha }}
docker push $DOCKER_IMAGE:$BRANCH
if [ "$BRANCH" == "master" ]; then
docker tag app $DOCKER_IMAGE:latest
docker push $DOCKER_IMAGE:latest
fi
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
1
.secrets
8 changes: 8 additions & 0 deletions backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ Instructions to run discourse locally with Docker, for testing discourse auto-po
To generate api key:

Preferences -> Admin -> Manage Keys -> New API Key

## Github Actions

Run github action build locally with [act](https://github.com/nektos/act):

```sh
(cd ../../ && act --workflows .github/workflows/build.yml)
```

0 comments on commit be8110f

Please sign in to comment.