Skip to content

Commit

Permalink
Merge pull request #223 from scribam/github-actions-warnings
Browse files Browse the repository at this point in the history
Fix GitHub Actions warnings
  • Loading branch information
Princess-of-Sleeping authored May 6, 2023
2 parents e82a3ef + b22c11f commit a302403
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Get Information Variables
id: core
run: |
echo "::set-output name=sha8::$(echo ${GITHUB_SHA} | cut -c1-8)"
echo "sha8=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_OUTPUT
- name: Compile project
run: |
sh build.sh
Expand All @@ -24,7 +24,7 @@ jobs:
make install DESTDIR=../vita-toolchain
- name: Upload artifacts
if: ${{ success() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: vita-toolchain-${{ steps.core.outputs.sha8 }}
path: ./vita-toolchain/usr/local/

0 comments on commit a302403

Please sign in to comment.