Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pandoc Include Code Files
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
b3
Pandoc Include Code Files
Commits
ec6024bd
Commit
ec6024bd
authored
2 years ago
by
Bruno BEAUFILS
Browse files
Options
Downloads
Patches
Plain Diff
Remove github CI config
parent
2ca7ae16
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/ci.yaml
+0
-46
0 additions, 46 deletions
.github/workflows/ci.yaml
.github/workflows/website.yml
+0
-40
0 additions, 40 deletions
.github/workflows/website.yml
with
0 additions
and
86 deletions
.github/workflows/ci.yaml
deleted
100644 → 0
+
0
−
46
View file @
2ca7ae16
name
:
CI
on
:
# Run on all pull requests that change code.
pull_request
:
paths-ignore
:
-
'
README.md'
-
LICENSE
-
.editorconfig
# Run every time a code change is pushed.
push
:
paths-ignore
:
-
'
README.md'
-
LICENSE
-
.editorconfig
# Test if things still work each Tuesday morning at 5:39 UTC.
# This way we will catch incompatible pandoc changes in a timely
# manner.
schedule
:
# At 5:39am each Tuesday
-
cron
:
'
39
5
*
*
2'
jobs
:
test
:
runs-on
:
ubuntu-latest
strategy
:
fail-fast
:
true
matrix
:
pandoc
:
-
edge
-
latest
# This should be the oldest version that's supported
# - 2.19.2
container
:
image
:
pandoc/core:${{ matrix.pandoc }}
steps
:
-
name
:
Checkout
uses
:
actions/checkout@v2
-
name
:
Install dependencies
run
:
apk add make
-
name
:
Test
run
:
make test
This diff is collapsed.
Click to expand it.
.github/workflows/website.yml
deleted
100644 → 0
+
0
−
40
View file @
2ca7ae16
name
:
Publish Website
# Allow one concurrent deployment
concurrency
:
group
:
"
pages"
cancel-in-progress
:
true
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions
:
contents
:
read
pages
:
write
id-token
:
write
on
:
push
:
branches
:
[
'
main'
]
jobs
:
website
:
runs-on
:
ubuntu-latest
environment
:
name
:
github-pages
url
:
${{ steps.deployment.outputs.page_url }}
steps
:
-
name
:
Checkout repository
uses
:
actions/checkout@v3
-
name
:
Setup Pages
uses
:
actions/configure-pages@v1
-
name
:
Render Website
run
:
|
make -B website \
PANDOC="docker run --rm --volume $(pwd):/data \
--user $(id -u):$(id -g) pandoc/core:latest"
-
name
:
Upload artifact
uses
:
actions/upload-pages-artifact@v1
with
:
path
:
'
_site'
-
name
:
Deploy to GitHub Pages
id
:
deployment
uses
:
actions/deploy-pages@main
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment