Skip to content

Release v2.0.0

Release v2.0.0 #12

Workflow file for this run

# 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