From 88d33372c4e0bcd4b5bddf6454575dd48142aa73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nat=C3=A1lia=20Granato?= <91998391+nataliagranato@users.noreply.github.com> Date: Wed, 20 Mar 2024 14:06:29 -0300 Subject: [PATCH] add: create release.yml --- .github/workflows/release.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..8b042e0 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,28 @@ +name: Release + +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Extract commit hash + id: extract_hash + run: | + HASH=$(git rev-parse HEAD) + echo "Commit hash: $HASH" + echo "::set-output name=hash::$HASH" + + - name: Create Release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ steps.extract_hash.outputs.hash }} + token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + env: + TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}