Update build.yml

This commit is contained in:
windowsboy111
2022-10-17 18:56:41 +08:00
committed by GitHub
parent be7f5c71cf
commit 54d7372598
+3 -3
View File
@@ -9,12 +9,12 @@ on:
jobs:
parse:
outputs:
pkgs: ${{ steps.parse.outputs.pkgs }}
pkgs: ${{ steps.parsing.outputs.pkgs }}
runs-on: 'ubuntu-latest'
steps:
- name: Parse Input
id: parse
run: echo "${{ inputs.packages }}" | sed 's/ /","/g' | sed 's/^/pkgs=["/' | sed 's/$/"]/' > $GITHUB_ENV
id: parsing
run: echo "${{ inputs.packages }}" | sed 's/ /","/g' | sed 's/^/::set-output name=pkgs::["/' | sed 's/$/"]/'
build:
needs: parse
strategy: