Skip to content

Commit

Permalink
Add start of publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro-Bronsveld committed Apr 18, 2023
1 parent bdeca15 commit d5ceeb6
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish Release

on:
release:
types: [published]

jobs:
publish-release:
name: Publish Release
runs-on: ubuntu-latest
env:
VSIX_FILE: "anki-editor-${{ github.ref_name }}.vsix"
steps:
- name: Download vsix release asset
uses: dsaltares/fetch-gh-release-asset@master
with:
version: "tags/${{ github.ref_name }}"
file: ${{ env.VSIX_FILE }}
- name: List directory content
run: ls -l

0 comments on commit d5ceeb6

Please sign in to comment.