Merge pull request #246 from Zack-83/patch-1 #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Docker Image | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: apt-get update, apt-get install gettext and create env.js | |
run: | | |
sudo apt-get update | |
sudo apt-get install gettext | |
echo "${{secrets.CLIENT_CONN_URL}}" | |
envsubst < app/src/assets/env.template.js > app/src/assets/env.js | |
env: | |
NEO_GUSER: ${{secrets.NEO_GUSER}} | |
NEO_GPASS: ${{secrets.NEO_GPASS}} | |
NEO_GMAXLENGTH: ${{secrets.NEO_GMAXLENGTH}} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./Dockerfile | |
push: true | |
build-args: METEOR_CLIENT_CONN_URL=${{secrets.CLIENT_CONN_URL}} | |
tags: | | |
ghcr.io/semantic-society/neologism/neologism2:latest | |
ghcr.io/semantic-society/neologism/neologism2:${{ github.sha }} |