Improve the installation instructions #45
This file contains hidden or 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: build | |
on: | |
push: | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: ['ubuntu', 'windows', 'macos'] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- name: build | |
run: ./ci/ci.bash | |
shell: bash | |
- name: upload-artifacts | |
uses: actions/[email protected] | |
with: | |
name: godot-pure-data-${{ matrix.os }} | |
path: work/install | |
package: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
- name: download all build artifacts | |
uses: actions/[email protected] | |
with: | |
path: work/artifacts | |
- name: build | |
run: sh ci/package.bash work/artifacts | |
shell: bash | |
- name: upload-artifacts | |
uses: actions/[email protected] | |
with: | |
name: project | |
path: project | |
publish: | |
needs: [package] | |
if: startsWith(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/[email protected] | |
with: | |
ref: master | |
- name: download all build artifacts | |
uses: actions/[email protected] | |
with: | |
name: project | |
path: project | |
- name: commit | |
run: | | |
git config --global user.name 'samsface' | |
git config --global user.email '[email protected]' | |
git add -A | |
git commit -am "automated commit" | |
git push |