Skip to content

Correct version info for 24.2.3 #307

Correct version info for 24.2.3

Correct version info for 24.2.3 #307

Workflow file for this run

name: "PR"
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # 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@v5
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@b4ffde65f46336ab88eb53be808477a3936bae11 # 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