Skip to content

Commit

Permalink
Merge pull request #3 from RoboCupAtHome/master
Browse files Browse the repository at this point in the history
Updating external changes.
  • Loading branch information
hawkina authored Jan 8, 2024
2 parents b785baf + 2cbebc1 commit 482d0e7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX linter (chktex)
uses: j2kun/[email protected]
# Provide this output for context, but don't fail builds
Expand All @@ -19,15 +19,15 @@ jobs:
build-rulebook:

runs-on: ubuntu-latest
container: blang/latex:ubuntu
container: leplusorg/latex:latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation
run:
TERM=xterm make dorulebookonly
- name: Upload build result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rulebook
path: rulebook.pdf
Expand All @@ -36,15 +36,15 @@ jobs:
build-scoresheets:

runs-on: ubuntu-latest
container: blang/latex:ubuntu
container: leplusorg/latex:latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation
run:
TERM=xterm make doscoresheetsonly
- name: Upload build result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: score_sheets
path: score_sheets.pdf
Expand All @@ -56,16 +56,16 @@ jobs:
contents: write
needs: [build-rulebook, build-scoresheets]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
- name: Download rulebook
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: rulebook
path: ${{ runner.temp }}/rulebook
- name: Download score sheets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: score_sheets
path: ${{ runner.temp }}/score_sheets
Expand All @@ -85,7 +85,7 @@ jobs:
mv $ARTIFACTS_PATH/score_sheets/score_sheets.pdf score_sheets/$FILENAME
- name: Commit and push to GitHub Pages
if: github.ref == 'refs/heads/master'
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: gh-pages
commit_author: "Continuous Deployment <[email protected]>"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX linter (chktex)
uses: j2kun/[email protected]
# Provide this output for context, but don't fail builds
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
container: blang/latex:ubuntu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation Rulebook
run:
TERM=xterm make dorulebookonly
Expand Down

0 comments on commit 482d0e7

Please sign in to comment.