Release v2.0.0 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
name: Release Testing | |
# Controls when the action will run. | |
on: | |
release: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create test file | |
run: echo Hello, world! > hello.txt | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-artifact | |
path: hello.txt | |
- name: Detele artifact | |
uses: joutvhu/delete-artifact@v2 | |
with: | |
name: test-artifact |