Skip to content

Commit

Permalink
Merge branch 'main' into feature/icosa-integration
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Nov 13, 2024
2 parents 79caa09 + 6bec5a2 commit 6409972
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ updates:
- "mikeage"
assignees:
- "mikeage"
groups:
all-actions-updates:
patterns:
- "**"
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ on: # yamllint disable-line rule:truthy
- "**"
tags:
- "v*"
schedule:
- cron: "31 18 * * sat" # Weekly, Saturday at 18:31 UTC

env:
UNITY_VERSION: "2019.4.25f1"
jobs:
configuration:
if: |
(github.event_name == 'schedule') ||
(github.event_name == 'pull_request') ||
(
github.event_name == 'push' &&
Expand Down Expand Up @@ -475,14 +478,13 @@ jobs:
- name: Publish
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: ${{ steps.changelog.outputs.changelog }}
prerelease: ${{ needs.configuration.outputs.prerelease }}
target_commitish: ${{ needs.configuration.outputs.currentrelease }}
tag_name: ${{ needs.configuration.outputs.version }}
files: releases/*
token: ${{ secrets.RELEASE_TOKEN }}

publish_gitbook:
name: Publish changelog from last major build to open-blocks-docs
Expand Down Expand Up @@ -581,7 +583,7 @@ jobs:
- name: Restore steam login config
run: |
mkdir -p /home/runner/Steam/config
echo "${{ secrets.STEAM_CONFIG_VDF}}" | base64 -d - > /home/runner/Steam/config/config.vdf
echo "${{ secrets.STEAM_CONFIG_VDF}}" | base64 -d - | gunzip - > /home/runner/Steam/config/config.vdf
md5sum /home/runner/Steam/config/config.vdf
- name: Download Build Artifacts (Windows)
uses: actions/download-artifact@v4
Expand All @@ -605,7 +607,7 @@ jobs:
CHANNEL: beta
- name: Update steam login secret
run: |
base64 -i /home/runner/Steam/config/config.vdf | gh secret set --visibility all --org icosa-foundation STEAM_CONFIG_VDF
gzip /home/runner/Steam/config/config.vdf -c | base64 | gh secret set --visibility all --org icosa-foundation STEAM_CONFIG_VDF
md5sum /home/runner/Steam/config/config.vdf
env:
GITHUB_TOKEN: ${{ secrets.SECRET_UPDATER_PAT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5.2.0
- uses: actions/setup-python@v5.3.0
with:
python-version: '3.12'
- uses: actions/setup-dotnet@v4.0.1
- uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: '8.0.x'
- name: Install pre-commit
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ As the original repo is archived we cannot submit PRs, so feel free to submit th
### GitHub
- [Formal GitHub Releases](https://github.com/icosa-foundation/open-blocks/releases/latest)

Note that despite a Windows build, it does work on Linux. For example one can add as a non-Steam game to their library, force compatibility with Proton experimental and run Open Blocks as-is, without any modification.

## Acknowledgements
* Thank you to the original developers for your amazing work and for finding a way to open source the app!
Expand Down

0 comments on commit 6409972

Please sign in to comment.