Fixes speedloaders and enbloc clips not being able to take other ammo… #1948
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: Generate documentation | |
on: | |
push: | |
branches: | |
- master | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow one concurrent deployment | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
jobs: | |
generate_documentation: | |
if: "!contains(github.event.head_commit.message, '[ci skip]')" | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Restore SpacemanDMM cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/SpacemanDMM | |
key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} | |
- name: Install SpacemanDMM | |
run: bash tools/ci/install_spaceman_dmm.sh dmdoc | |
- name: Generate documentation | |
run: | | |
~/dmdoc | |
touch dmdoc/.nojekyll | |
echo codedocs.shiptest.net > dmdoc/CNAME | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
# Upload output directory | |
path: "dmdoc/" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |