61 lines
1.7 KiB
YAML
61 lines
1.7 KiB
YAML
name: Tomcode landing build/deploy
|
|
run-name: Tomcode landing is being built and deployed 🚀
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: node
|
|
steps:
|
|
- name: Initialization
|
|
run: mkdir /app && cd /app
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v4
|
|
- name: Download dependencies
|
|
run: |
|
|
echo "Downloading dependencies."
|
|
npm ci --cache .npm --prefer-offline
|
|
- name: Build
|
|
run: |
|
|
echo "Building application."
|
|
npm run build --cache .npm --prefer-offline
|
|
- name: Upload application artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: application
|
|
path: /app
|
|
dockerize:
|
|
name: dockerize
|
|
runs-on: host
|
|
container:
|
|
image: catthehacker/ubuntu:act-latest
|
|
steps:
|
|
- name: Download application artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: application
|
|
path: /app
|
|
- name: Test
|
|
run: cd app && ls -la && ls -la /
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker BuildX
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
config-inline: |
|
|
[registry."git.tomcode.io"]
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: https://git.tomcode.io
|
|
username: ${{ vars.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
|
|
- name: Get Meta
|
|
id: meta
|
|
run: |
|
|
echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT
|
|
echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT |