feat: apply logic of loading env variables to config file using viper… #13
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: master release | |
on: | |
push: | |
branches: | |
- master | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_REPOSITORY: axieinfinity/bridge | |
DOCKER_FILE: Dockerfile | |
jobs: | |
push_to_docker_registry: | |
name: Push Docker image to GHCR.IO | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: 'Checkout Repo With Submodule' | |
uses: 'actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c' #v3.1.0 | |
with: | |
submodules: true | |
- name: Log in to the Container registry | |
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Enable Registry Cache | |
- name: "Set up Docker Buildx" | |
uses: "docker/setup-buildx-action@8c0edbc76e98fa90f69d9a2c020dcb50019dc325" #v2.2.1 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@37abcedcc1da61a57767b7588cb9d03eb57e28b3 #v3.3.0 | |
with: | |
context: . | |
file: ${{ env.DOCKER_FILE }} | |
push: true | |
tags: "${{ env.REGISTRY }}/${{ env.IMAGE_REPOSITORY }}:nightly" |