build #138
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: build | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: ['ubuntu', 'windows', 'macos'] | |
runs-on: ${{ matrix.os }}-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: clone submodule | |
uses: actions/checkout@v2 | |
with: | |
repository: samsface/steam-sdk | |
path: lib/steam-sdk | |
ssh-key: ${{ secrets.STEAM_SDK_KEY }} | |
- name: get python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: get conan | |
uses: turtlebrowser/get-conan@main | |
with: | |
version: 1.60.2 | |
- name: cache conan | |
uses: actions/cache@v2 | |
with: | |
path: ~/.conan | |
key: ${{ runner.os }}-conan-2 | |
- name: build | |
run: ./ci/ci.bash | |
shell: bash | |
- name: upload-artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: godot-steam-api-${{ matrix.os }} | |
path: work/install | |
package: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: download all build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
path: work/artifacts | |
- name: build | |
run: sh ci/package.bash work/artifacts | |
shell: bash | |
- name: upload-artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: project | |
path: addons | |
publish: | |
needs: [package] | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
- name: download all build artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: project | |
path: addons | |
- name: commit | |
run: | | |
git config --global user.name 'samsface' | |
git config --global user.email 'samsface@users.noreply.github.com' | |
git add -A | |
git commit -am "automated commit" | |
git push | |
remove-old-artifacts: | |
needs: [publish] | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: remove-old-artifacts | |
uses: c-hive/gha-remove-artifacts@v1 | |
with: | |
age: '10 minutes' |