-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
revert: go back to rokit as a toolchain manager
- Loading branch information
Showing
6 changed files
with
53 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Install pesde | ||
description: Installs pesde CLI and authenticates with the registry | ||
|
||
inputs: | ||
pesde-token: | ||
description: "Token for publishing to the pesde registry" | ||
required: false | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Download pesde | ||
shell: bash | ||
run: | | ||
latest_release=$(curl -s https://api.github.com/repos/pesde-pkg/pesde/releases | jq '[.[] | select(.prerelease == true or .prerelease == false)][0]') | ||
download_url=$(echo "$latest_release" | jq -r '.assets[] | select(.name | endswith("linux-x86_64.tar.gz")) | .browser_download_url') | ||
curl -L -o /tmp/pesde.tar.gz "$download_url" | ||
tar -xzvf /tmp/pesde.tar.gz | ||
chmod +x pesde | ||
./pesde self-install | ||
rm ./pesde | ||
echo "$HOME/.pesde/bin" >> $GITHUB_PATH | ||
- name: Authenticate into pesde registry | ||
if: inputs.pesde-token != '' | ||
shell: bash | ||
run: pesde auth login --token "${{ inputs.pesde-token }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,15 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install tooling | ||
uses: CompeyDev/[email protected] | ||
with: | ||
cache: true | ||
|
||
- name: Install pesde | ||
uses: 2jammers/setup-pesde@v0.2.0 | ||
uses: ./.github/actions/setup-pesde | ||
with: | ||
lune-version: v0.8.9 | ||
pesde-version: v0.5.0-rc.14 | ||
token: ${{ secrets.PESDE_TOKEN }} | ||
pesde-token: ${{ secrets.PESDE_TOKEN }} | ||
|
||
- name: Install dependencies | ||
run: pesde install | ||
|
@@ -36,12 +39,15 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install tooling | ||
uses: CompeyDev/[email protected] | ||
with: | ||
cache: true | ||
|
||
- name: Install pesde | ||
uses: 2jammers/setup-pesde@v0.2.0 | ||
uses: ./.github/actions/setup-pesde | ||
with: | ||
lune-version: v0.8.9 | ||
pesde-version: v0.5.0-rc.14 | ||
token: ${{ secrets.PESDE_TOKEN }} | ||
pesde-token: ${{ secrets.PESDE_TOKEN }} | ||
|
||
- name: Install dependencies | ||
run: pesde install | ||
|
@@ -59,12 +65,15 @@ jobs: | |
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install tooling | ||
uses: CompeyDev/[email protected] | ||
with: | ||
cache: true | ||
|
||
- name: Install pesde | ||
uses: 2jammers/setup-pesde@v0.2.0 | ||
uses: ./.github/actions/setup-pesde | ||
with: | ||
lune-version: v0.8.9 | ||
pesde-version: v0.5.0-rc.14 | ||
token: ${{ secrets.PESDE_TOKEN }} | ||
pesde-token: ${{ secrets.PESDE_TOKEN }} | ||
|
||
- name: Install dependencies | ||
run: pesde install | ||
|
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
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
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
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