Skip to content

Commit

Permalink
GH Action minor renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
entorb committed May 17, 2024
1 parent 8413cee commit 283a657
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-and-ebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache-hit: ${{ steps.cache-lookup.outputs.cache-hit }}

steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand All @@ -81,7 +81,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.12"
# no package needed, so no caching
# no package installed, so no caching
# cache: "pip"

# - name: setup environment to DE lang
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/make-pdf-1-select.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build PDF 1 selected
name: Make PDF 1 selected
# no apt update included

on:
Expand All @@ -10,14 +10,14 @@ on:
default: "hpmor"

jobs:
build:
make:
runs-on: ubuntu-24.04
steps:
- name: Print selection
run: |
echo "selected PDF: ${{ github.event.inputs.pdf_target }}"
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/make-pdf-6-parallel.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Build PDF all parallel
name: Make PDF 6 parallel
# no apt update included

on:
workflow_dispatch:

jobs:
build-and-release:
make:
runs-on: ubuntu-24.04
strategy:
matrix:
part: [hpmor-1, hpmor-2, hpmor-3, hpmor-4, hpmor-5, hpmor-6]
steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/make-pdf-all-serial.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: Build PDF all serial
name: Make PDF all serial
# includes apt update

on:
workflow_dispatch:

jobs:
build:
make:
runs-on: ubuntu-24.04
steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand Down Expand Up @@ -42,14 +42,16 @@ jobs:
python3 --version
- name: Make PDFs
run: latexmk hpmor-1 hpmor-2 hpmor-3 hpmor-4 hpmor-5 hpmor-6 hpmor > /dev/null
run: |
latexmk hpmor-1 hpmor-2 hpmor-3 hpmor-4 hpmor-5 hpmor-6 hpmor > /dev/null
- name: Publish PDF to release
uses: softprops/action-gh-release@v2
with:
tag_name: WorkInProgress
prerelease: true
files: hpmor*.pdf
files: |
hpmor*.pdf
- name: Upload logs as artifact
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-pdf-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build PDF layout test
name: Make PDF layout test

on:
workflow_dispatch:
Expand Down

0 comments on commit 283a657

Please sign in to comment.