Skip to content

Commit

Permalink
Fix zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
natsumerinchan committed Jun 3, 2024
1 parent 8915aeb commit b93739f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PixelExperience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Git kernel
run: |
git clone "${{ github.event.inputs.KERNEL_SOURCE }}" -b "${{ github.event.inputs.KERNEL_SOURCE_BRANCH }}" kernel --depth=1
echo "TAG_NAME=PE-v5.4.$(grep "^SUBLEVEL =" kernel/Makefile | awk '{print $3}')-$(date +"%Y%m%d")" >> $GITHUB_ENV
echo "TAG_NAME=v5.4.$(grep "^SUBLEVEL =" kernel/Makefile | awk '{print $3}')-$(date +"%Y%m%d")" >> $GITHUB_ENV
- name: Setup KernelSU
if: github.event.inputs.KERNELSU_CONFIG == 'true'
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "kernel/out/arch/arm64/boot/PE-martini-${{ env.TAG_NAME }}.zip"
tag: "ONEPLUS9RT-${{ env.TAG_NAME }}"
tag: "ONEPLUS9RT-PE-${{ env.TAG_NAME }}"
name: "Pixel Experience martini ${{ env.TAG_NAME }}"
allowUpdates: true
replacesArtifacts: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/PixelOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Git kernel
run: |
git clone "${{ github.event.inputs.KERNEL_SOURCE }}" -b "${{ github.event.inputs.KERNEL_SOURCE_BRANCH }}" kernel --depth=1
echo "TAG_NAME=PixelOS-v5.4.$(grep "^SUBLEVEL =" kernel/Makefile | awk '{print $3}')-$(date +"%Y%m%d")" >> $GITHUB_ENV
echo "TAG_NAME=v5.4.$(grep "^SUBLEVEL =" kernel/Makefile | awk '{print $3}')-$(date +"%Y%m%d")" >> $GITHUB_ENV
- name: Setup KernelSU
if: github.event.inputs.KERNELSU_CONFIG == 'true'
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
artifacts: "kernel/out/arch/arm64/boot/PixelOS-martini-${{ env.TAG_NAME }}.zip"
tag: "ONEPLUS9RT-${{ env.TAG_NAME }}"
tag: "ONEPLUS9RT-PixelOS-${{ env.TAG_NAME }}"
name: "PixelOS martini ${{ env.TAG_NAME }}"
allowUpdates: true
replacesArtifacts: true
Expand Down

0 comments on commit b93739f

Please sign in to comment.