All: Use four-tuple for paste. #22
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: Test Build Output | |
on: | |
push: | |
pull_request: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Clone Source | |
uses: actions/checkout@v4 | |
- name: Make Directories | |
run: mkdir -p build | |
- name: Install Dependencies | |
shell: bash | |
run: scripts/requirements.sh | |
- name: Build Resources | |
shell: bash | |
run: scripts/build.sh ${GITHUB_SHA} | |
- name: Upload files as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Images | |
path: build |