Skip to content

Commit

Permalink
feat: remove release related steps for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina committed Jul 23, 2024
1 parent 44f4647 commit 588f82c
Showing 1 changed file with 28 additions and 20 deletions.
48 changes: 28 additions & 20 deletions .github/workflows/release_and_deploy_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,20 @@ jobs:
runs-on: ubuntu-latest
needs: [ref]
steps:
- name: Release
# https://github.com/ncipollo/release-action
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
allowUpdates: true
token: ${{ secrets.github_token }}
tag: ${{ needs.ref.outputs.version_tag }}
commit: ${{ needs.ref.outputs.refspec }}
draft: true
- run: |
echo "TODO: fix release"
shell: bash
# - name: Release
# # https://github.com/ncipollo/release-action
# uses: ncipollo/release-action@v1
# with:
# generateReleaseNotes: true
# allowUpdates: true
# token: ${{ secrets.github_token }}
# tag: ${{ needs.ref.outputs.version_tag }}
# commit: ${{ needs.ref.outputs.refspec }}
# draft: true

deploy-staging:
name: Deploy to Staging
Expand All @@ -63,13 +67,17 @@ jobs:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Release
# https://github.com/ncipollo/release-action
uses: ncipollo/release-action@v1
with:
allowUpdates: true
omitBodyDuringUpdate: true
token: ${{ secrets.github_token }}
tag: ${{ needs.ref.outputs.version_tag }}
commit: ${{ needs.ref.outputs.refspec }}
draft: false
- run: |
echo "TODO: fix release"
shell: bash
# steps:
# - name: Release
# # https://github.com/ncipollo/release-action
# uses: ncipollo/release-action@v1
# with:
# allowUpdates: true
# omitBodyDuringUpdate: true
# token: ${{ secrets.github_token }}
# tag: ${{ needs.ref.outputs.version_tag }}
# commit: ${{ needs.ref.outputs.refspec }}
# draft: false

0 comments on commit 588f82c

Please sign in to comment.