name: Initialize Artifact description: 'Allow the user to initialize an empty artifact used globally' inputs: artifact-name: description: 'The name of the artifact' required: true type: string file-name: description: 'The name of the file with extension created in the artifact' required: true type: string content: description: 'The init content the file should have' type: string default: "" runs: using: "composite" steps: - uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 - name: Create empty artifact shell: bash run: echo "${{inputs.content}}" > ${{ inputs.file-name }} - name: Upload artifact uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 with: name: ${{ inputs.artifact-name }} path: ${{ inputs.file-name }}