WIP: Script release and documentation updates #342
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: "PR" | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Docker meta ci | |
id: docker_meta_ci | |
uses: docker/metadata-action@v5 | |
with: | |
images: solidnerd/bookstack-dev | |
tags: | | |
type=sha | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push Dev | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
file: ./Dockerfile | |
platforms: linux/amd64 | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: | | |
${{ steps.docker_meta_ci.outputs.tags }} | |
labels: ${{ steps.docker_meta_ci.outputs.labels }} | |
cache-from: type=registry,ref=solidnerd/bookstack-dev:master | |
cache-to: type=inline | |
outputs: type=docker,dest=/tmp/image-bookstack.tar | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: image-bookstack | |
path: /tmp/image-bookstack.tar | |
if-no-files-found: warn | |
e2e: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: image-bookstack | |
path: /tmp | |
if-no-files-found: warn | |
- name: Load Docker image | |
run: | | |
docker load --input /tmp/image-bookstack.tar | |
docker image ls -a | |
- name: Execute End-to-End Test | |
run: make e2e |