1
mirror of https://github.com/R2Northstar/Northstar synced 2025-09-27 16:50:50 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
GeckoEidechse
c2b612b314 chore: Bump tcli to 0.2.3 2024-03-05 15:14:35 +01:00
GeckoEidechse
ada52bb828 Bump cbrgm/mastodon-github-action to v2 (#635)
And update parameters accordingly
2024-03-03 12:22:12 +01:00
GeckoEidechse
86085f5c91 Bump CI runner to Ubuntu 22.04 (#627) 2024-02-18 22:16:46 +01:00
2 changed files with 7 additions and 8 deletions

View File

@@ -9,9 +9,8 @@ jobs:
steps: steps:
- name: Send toot to Mastodon - name: Send toot to Mastodon
id: mastodon id: mastodon
uses: cbrgm/mastodon-github-action@v1 uses: cbrgm/mastodon-github-action@v2
with: with:
message: "We just released Northstar ${{ github.event.release.tag_name }}\n\n${{ github.event.release.html_url }}" message: "We just released Northstar ${{ github.event.release.tag_name }}\n\n${{ github.event.release.html_url }}"
env: url: ${{ secrets.MASTODON_URL }}
MASTODON_URL: ${{ secrets.MASTODON_URL }} access-token: ${{ secrets.MASTODON_ACCESS_TOKEN }}
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}

View File

@@ -18,7 +18,7 @@ env:
jobs: jobs:
build-northstar: build-northstar:
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout release files - name: Checkout release files
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -121,13 +121,13 @@ jobs:
TS_NAMESPACE: northstar TS_NAMESPACE: northstar
TS_MOD_NAME: Northstar TS_MOD_NAME: Northstar
TS_MOD_DESCRIPTION: Titanfall 2 modding and custom server framework. TS_MOD_DESCRIPTION: Titanfall 2 modding and custom server framework.
runs-on: ubuntu-20.04 runs-on: ubuntu-22.04
steps: steps:
- name: Setup tcli - name: Setup tcli
run: | run: |
wget --output-document tcli.tar.gz https://github.com/thunderstore-io/thunderstore-cli/releases/download/0.1.4/tcli-0.1.4-linux-x64.tar.gz wget --output-document tcli.tar.gz https://github.com/thunderstore-io/thunderstore-cli/releases/download/0.2.3/tcli-0.2.3-linux-x64.tar.gz
tar xvf tcli.tar.gz tar xvf tcli.tar.gz
sudo mv --verbose tcli-0.1.4-linux-x64/tcli /bin sudo mv --verbose tcli-0.2.3-linux-x64/tcli /bin
- name: (DEBUG) Download Northstar package - name: (DEBUG) Download Northstar package
if: ${{ env.ACT }} # Download Northstar package from releases when running locally instead of relying on previous jobs if: ${{ env.ACT }} # Download Northstar package from releases when running locally instead of relying on previous jobs