Add build functionality to `github-pages` executable (#798)

Add Publish to Docker Workflow
This commit is contained in:
Jesse Riggins 2021-11-16 15:31:03 -06:00 коммит произвёл GitHub
Родитель 51387a1bdd
Коммит 99b4fb64b3
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 48 добавлений и 0 удалений

35
.github/workflows/publish-docker.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,35 @@
name: Publish to Docker
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]
env:
DOCKER_TAG_IMAGE: "ghcr.io/github/pages-gem"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Get Docker Metadata
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ env.DOCKER_TAG_IMAGE }}
- name: Build Docker Image
run: |
docker build -t ${{ steps.meta.outputs.tags }} -f Dockerfile .
- name: Push to Container Registry
if: github.event_name != 'pull_request'
run: |
echo ${{ secrets.GITHUB_TOKEN }} | docker login -u ${{ github.actor }} https://ghcr.io --password-stdin
docker push ${{ steps.meta.outputs.tags }}

Просмотреть файл

@ -56,4 +56,17 @@ Mercenary.program(:"github-pages") do |p|
end
end
end
p.command(:build) do |c|
c.syntax "build [options]"
c.description "Builds your Jekyll site"
c.option 'verbose', '--verbose', 'Verbose logging'
c.option 'source', '--source DIR', 'From where to collect the source files'
c.option 'destination', '--destination DIR', 'To where the compiled files should be written'
c.action do |_, options|
Jekyll::Commands::Build.process(options)
end
end
end