print Job with uppercase J when logging that a runonce job ran already #37
Workflow file for this run
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: Makefile CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
id-token: write | |
pages: write | |
jobs: | |
build_and_publish_doc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install dependencies | |
run: sudo apt install -y docbook docbook-xsl docbook-xml docbook-utils manpages-dev | |
- name: Create the configure script with autoconf | |
run: autoconf | |
- name: configure | |
run: ./configure --without-sendmail | |
- name: Build the doc | |
run: make updatedoc | |
- name: Upload GitHub Pages artifact | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
#name: # optional, default is github-pages | |
# Path of the directory containing the static assets. | |
path: doc/en/HTML/ # default is _site/ | |
# Duration after which artifact will expire in days. | |
retention-days: 7 # optional, default is 1 | |
- name: Deploy GitHub Pages site | |
uses: actions/[email protected] | |
#with: | |
# Should this action only emit build telemetry instead of deploying the build artifact? | |
#emit_telemetry: # optional, default is false | |
# The status of the previous build. | |
#conclusion: # optional | |
# GitHub token | |
#token: # default is ${{ github.token }} | |
# Time in milliseconds after which to timeout and cancel the deployment (default: 10 minutes) | |
#timeout: # optional, default is 600000 | |
# Maximum number of status report errors before cancelling a deployment (default: 10) | |
#error_count: # optional, default is 10 | |
# Time in milliseconds between two deployment status report (default: 5 seconds) | |
#reporting_interval: # optional, default is 5000 | |
# Name of the artifact to deploy | |
#artifact_name: # optional, default is github-pages | |
# Is this attempting to deploy a pull request as a GitHub Pages preview site? (NOTE: This feature is only in alpha currently and is not available to the public!) | |
#preview: # optional, default is false |