generated from pixx/chirpy-starter
77 lines
2.3 KiB
YAML
77 lines
2.3 KiB
YAML
name: "Build and Deploy"
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
paths-ignore:
|
|
- .gitignore
|
|
- README.md
|
|
- LICENSE
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
pages: write
|
|
id-token: write
|
|
|
|
# Allow one concurrent deployment
|
|
concurrency:
|
|
group: "pages"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
# submodules: true
|
|
# If using the 'assets' git submodule from Chirpy Starter, uncomment above
|
|
# (See: https://github.com/cotes2020/chirpy-starter/tree/main/assets)
|
|
|
|
#- name: Setup Ruby
|
|
# uses: ruby/setup-ruby@v1
|
|
# with:
|
|
# ruby-version: 3.3
|
|
# bundler-cache: true
|
|
- name: Use system Ruby
|
|
run: |
|
|
ruby -v || sudo apt update && sudo apt install -y ruby-full
|
|
|
|
- name: Build site
|
|
run: bundle exec jekyll b -d "_site${{ steps.pages.outputs.base_path }}"
|
|
env:
|
|
JEKYLL_ENV: "production"
|
|
|
|
- name: Test site
|
|
run: |
|
|
bundle exec htmlproofer _site \
|
|
\-\-disable-external \
|
|
\-\-ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
|
|
|
|
- name: Build Docker image
|
|
run: |
|
|
echo "FROM nginx:alpine" > Dockerfile
|
|
echo "COPY _site /usr/share/nginx/html" >> Dockerfile
|
|
echo "EXPOSE 80" >> Dockerfile
|
|
docker build -t ${CI_REGISTRY_IMAGE:-10.22.16.11:80/${{ gitea.repository }}}:${{ gitea.sha }} .
|
|
|
|
- name: Login to Gitea Container Registry
|
|
run: |
|
|
echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login ${CI_REGISTRY:-gitea.local:3000} \
|
|
-u "${{ secrets.REGISTRY_USERNAME }}" --password-stdin
|
|
|
|
- name: Push Docker image
|
|
run: |
|
|
docker tag ${CI_REGISTRY_IMAGE:-10.22.16.11:80/${{ gitea.repository }}}:${{ gitea.sha }} \
|
|
${CI_REGISTRY_IMAGE:-10.22.16.11:80/${{ gitea.repository }}}:latest
|
|
docker push ${CI_REGISTRY_IMAGE:-10.22.16.11:80/${{ gitea.repository }}}:${{ gitea.sha }}
|
|
docker push ${CI_REGISTRY_IMAGE:-10.22.16.11:80/${{ gitea.repository }}}:latest
|
|
|