mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:25:41 +00:00
r-freeman
a59af8227e
Some checks failed
Build And Publish / BuildAndPublish (push) Failing after 2m43s
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: Build And Publish
|
|
run-name: ${{ gitea.actor }} runs ci pipeline
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
BuildAndPublish:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Use Node.js
|
|
uses: https://github.com/actions/setup-node@v3
|
|
with:
|
|
node-version: '18.17.0'
|
|
|
|
- name: Installing dependencies
|
|
run: npm ci --legacy-peer-deps
|
|
env:
|
|
NODE_OPTIONS: --max_old_space_size=4096
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{secrets.DOCKER_HUB_USERNAME}}
|
|
password: ${{secrets.DOCKER_HUB_PASSWORD}}
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: https://github.com/docker/setup-buildx-action@v3
|
|
with:
|
|
config-inline: |
|
|
[registry."docker.io"]
|
|
mirrors = ["mirror.gcr.io"]
|
|
|
|
- name: Build and push Docker image
|
|
uses: https://github.com/docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
push: true
|
|
tags: rfreeman420/portfolio:v1
|
|
|
|
- name: Stop the docker container
|
|
continue-on-error: true
|
|
run: sudo docker stop portfolio
|
|
|
|
- name: Remove the docker container
|
|
continue-on-error: true
|
|
run: sudo docker rm portfolio
|
|
|
|
- name: Pull the Docker image
|
|
run: sudo docker pull rfreeman420/portfolio:v1
|
|
|
|
- name: Decrypt secrets
|
|
run: ./decrypt_secrets.sh
|
|
env:
|
|
SECRET_PASSPHRASE: ${{ secrets.SECRET_PASSPHRASE }}
|
|
|
|
- name: Run the Docker container
|
|
run: sudo docker run -d --restart unless-stopped --env-file ./.env --name portfolio -p ${{vars.TAILSCALE_IP}}:7777:3000 rfreeman420/portfolio:v1 |