Skip to content

Commit

Permalink
Add github action on publish release (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jomann09 authored May 4, 2023
1 parent 4d96288 commit e073f87
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

name: Release Updates

on:
release:
types: [published]

jobs:

update-version:
runs-on: ubuntu-latest
steps:
- name: Submit Version Change
run: |
curl --request GET "https://api.rechecked.io/versions?product=rcagent&action=set_latest&version=$GITHUB_REF_NAME&api_key=${{ secrets.RECHECKED_API_KEY }}"

0 comments on commit e073f87

Please sign in to comment.