Skip to content

Commit

Permalink
fix: Test wf
Browse files Browse the repository at this point in the history
  • Loading branch information
mmilian committed Nov 17, 2024
1 parent 6c50200 commit 8546568
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/notify.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Print Release Tag on PreRelease

on:
release:
types: [prereleased]

jobs:
print_release_tag_job:
runs-on: ubuntu-latest
steps:
- name: Install deployment-time prerequisites
run: |
echo "Installing cx from Creoox/cx using token ${{ secrets.GH_TOKEN }}
curl -X GET -H "Authorization: token ${GH_TOKEN}" https://raw.githubusercontent.com/Creoox/cx/main/src/cx.clj > /usr/local/bin/cx
chmod +x /usr/local/bin/cx
- name: Notify about a new release
run: |
cx teams notify \
-w ${{ secrets.TEAMS_WEBHOOK }}" \
-v v${{ github.event.release.tag_name }}" \
-s "New pre-release version of ifc2glbconverter " \
-m "available to test" \
-p "ifc2glbconverter" \
-r "https://github.com/Creoox/creoox-ifc2gltfcxconverter" \
-t "https://github.com/Creoox/creoox-ifc2gltfcxconverter"

0 comments on commit 8546568

Please sign in to comment.