Skip to content

Commit

Permalink
Create update-urls.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 authored Nov 9, 2024
1 parent c951c4a commit 01fe480
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/update-urls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Update URl's

on:
release:
types: [published]

jobs:
update-version:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set RELEASE_VERSION
run: echo "RELEASE_VERSION=${{ github.event.release.tag_name }}" >> $GITHUB_ENV

- name: Update download links with new version
run: node updateVersion.js

0 comments on commit 01fe480

Please sign in to comment.