Skip to content

Release Commit

Release Commit #45

name: Release Commit
on:
workflow_dispatch:
inputs:
version_name:
description: "Number of the version of the RDM to release"
required: true
type: string
jobs:
release_commit:
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}
CI_COMMIT_MESSAGE: "New RDM release: ${{inputs.version_name}}"
steps:
- name: checkhout
uses: actions/checkout@v3
- name: Commit changes
working-directory: ${{github.workspace}}
shell: bash
run: |
TODAY=$( date -u '+%Y-%m-%d' )
echo "${{inputs.version_name}} : $TODAY" >> RDM_version_history.txt
FILE_TO_COMMIT=RDM_version_history.txt
MESSAGE="$CI_COMMIT_MESSAGE"
SHA=$( git rev-parse master:$FILE_TO_COMMIT )
CONTENT=$( base64 -i $FILE_TO_COMMIT )
echo "Push commit"
gh api --method PUT /repos/:owner/:repo/contents/$FILE_TO_COMMIT \
--field message="${MESSAGE}" \
--field content="${CONTENT}" \
--field encoding="base64" \
--field branch="master" \
--field sha="${SHA}" \
--silent
echo "{\"tag\":\"${{inputs.version_name}}\",\"message\":\"$CI_COMMIT_MESSAGE\",\"object\":\"$SHA\",\"type\":\"commit\"}" > data.json
cat data.json
echo $SHA
RESP=$(curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}} " \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/3LawsRobotics/3laws/git/tags \
-d @data.json \
--fail \
--silent)
TAG_SHA=$(echo $RESP | jq -r '.sha')
echo "{\"ref\":\"refs/tags/${{inputs.version_name}}\",\"sha\":\"$TAG_SHA\"}" > data.json
cat data.json
echo "Try request with tag_sha: $TAG_SHA"
curl -L \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}} " \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/3LawsRobotics/3laws/git/refs \
-d @data.json \
--fail \
--silent