N2A - Build and Push #27
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: N2A - Build and Push | |
env: | |
# Azure ACR | |
ACR_HOST: ${{ vars.REGISTRY_LOGIN_SERVER_PROD }} | |
ACR_USER: ${{ secrets.REGISTRY_USERNAME_PROD }} | |
ACR_PASS: ${{ secrets.REGISTRY_PASSWORD_PROD }} | |
on: | |
workflow_dispatch: | |
#push: | |
# branches: | |
# - main | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create Config File | |
run: | | |
touch librechat.yaml && chmod 755 librechat.yaml | | |
cat librechat.n2a.yaml >> librechat.yaml | | |
rm -rf .dockerignore | | |
touch .dockerignore && chmod 755 .dockerignore | | |
cat .paychex.dockerignore >> .dockerignore | | |
cat .dockerignore | |
- name: log in to ACR | |
uses: azure/docker-login@v1 | |
with: | |
login-server: ${{ env.ACR_HOST }} | |
username: ${{ env.ACR_USER }} | |
password: ${{ env.ACR_PASS }} | |
- name: build and push docker container | |
run: | | |
docker build . -t ${{ env.ACR_HOST }}/paychex/librechat:n2a.${{ github.sha }} | |
docker push ${{ env.ACR_HOST }}/paychex/librechat:n2a.${{ github.sha }} | |
docker build . -t ${{ env.ACR_HOST }}/paychex/librechat:n2a.latest | |
docker push ${{ env.ACR_HOST }}/paychex/librechat:n2a.latest | |