Skip to content

Update the proxy address #3

Update the proxy address

Update the proxy address #3

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "master" ]
paths-ignore:
- 'README.md'
- '.env'
- '.gitignore'
jobs:
build:
runs-on: ubuntu-latest
env:
tag: ${{ secrets.CI_REGISTRY }}/geekpie/lug:latest
steps:
- uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: ${{ secrets.CI_REGISTRY }}
username: ${{ secrets.CI_REGISTRY_USER }}
password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build the Docker image
run: docker build . --file Dockerfile --tag $tag
- name: Push the Docker image
run: docker push $tag