Skip to content

Commit

Permalink
chore(actions): use local pesde action and deps
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev committed Nov 21, 2024
1 parent 0127e68 commit 47fbaec
Showing 1 changed file with 6 additions and 17 deletions.
23 changes: 6 additions & 17 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Download pesde
run: |
# Figure out the latest release
latest_release=$(curl -s https://api.github.com/repos/daimond113/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')
- name: Install pesde
uses: ./.github/workflows/pesde.yml
with:
pesde-token: ${{ secrets.PESDE_TOKEN }}

# Download and extract the linux-x86_64 artifact
curl -L -o /tmp/pesde.tar.gz "$download_url"
tar -xzvf /tmp/pesde.tar.gz
chmod +x pesde
# Install, cleanup and set PATH
./pesde self-install
rm ./pesde
echo "$HOME/.pesde/bin" >> $GITHUB_PATH
- name: Authenticate into pesde registry
run: pesde auth login --token ${{ secrets.PESDE_TOKEN }}
- name: Install dependencies
run: pesde install

- name: Publish
run: pesde publish -y

0 comments on commit 47fbaec

Please sign in to comment.