mirror of
https://github.com/gotenberg/gotenberg.git
synced 2026-08-17 20:52:14 +01:00
adding GitHub workflows
This commit is contained in:
13
.github/workflows/continuous-delivery-workflow.yml
vendored
Normal file
13
.github/workflows/continuous-delivery-workflow.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name: Gotenberg continuous delivery
|
||||||
|
on: push
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- releases/*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
name: Publish
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
run: make publish VERSION=$GITHUB_REF DOCKER_USER=${{ secrets.DOCKER_USER }} DOCKER_PASSWORD=${{ secrets.DOCKER_PASSWORD }}
|
||||||
11
.github/workflows/continuous-integration-workflow.yml
vendored
Normal file
11
.github/workflows/continuous-integration-workflow.yml
vendored
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
name: Gotenberg continuous integration
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tests:
|
||||||
|
name: Tests
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1
|
||||||
|
- run: make lint
|
||||||
|
- run: make tests
|
||||||
Reference in New Issue
Block a user