Skip to content

Commit

Permalink
Extract build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
bwachter committed Jul 30, 2024
1 parent db54986 commit 5da2a24
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,26 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build gettext
run: |
sudo apt-get install -y make cmake mingw-w64 msitools wixl doxygen
make
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: artifacts
path: |
build/*.exe
build/*.dll
build/*.msi
- name: Commit Doxygen documentation
run: |
( cat doc/Doxyfile ; echo "OUTPUT_DIRECTORY=doc" ) | doxygen -
git config --local user.email "[email protected]"
git config --local user.name "Github Action"
git add --all
git commit -m "Update doxygen documentation" -a
git commit -m "Update doxygen documentation" -a || true
git push "https://${GITHUB_ACTOR}:${INPUT_GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"

0 comments on commit 5da2a24

Please sign in to comment.