reference secrets directly

This commit is contained in:
2025-11-09 16:58:23 -05:00
parent 3154974c7e
commit 9225c3c0c1

View File

@@ -47,8 +47,8 @@ jobs:
with: with:
mode: move mode: move
parsed-data: ${{ steps.parsed.outputs.parsed-data }} parsed-data: ${{ steps.parsed.outputs.parsed-data }}
username: "${{ inputs.username }}" username: "${{ secrets.USERNAME }}"
token: ${{ inputs.token }} token: ${{ secrets.TOKEN }}
- name: Create publish script - name: Create publish script
shell: bash shell: bash
@@ -74,8 +74,8 @@ jobs:
uses: ${{ gitea.server_url }}/${{ gitea.repository_owner }}/build-publish/@build uses: ${{ gitea.server_url }}/${{ gitea.repository_owner }}/build-publish/@build
if: ${{ steps.parsed.outputs.build == 'true' }} if: ${{ steps.parsed.outputs.build == 'true' }}
with: with:
username: "${{ inputs.username }}" username: "${{ secrets.USERNAME }}"
token: ${{ inputs.token }} token: ${{ secrets.TOKEN }}
- name: Revert publish script - name: Revert publish script
shell: bash shell: bash
@@ -88,8 +88,8 @@ jobs:
with: with:
mode: delete mode: delete
parsed-data: ${{ steps.parsed.outputs.parsed-data }} parsed-data: ${{ steps.parsed.outputs.parsed-data }}
username: "${{ inputs.username }}" username: "${{ secrets.USERNAME }}"
token: ${{ inputs.token }} token: ${{ secrets.TOKEN }}
- name: Update latest tag - name: Update latest tag
shell: bash shell: bash