Skip to content

Commit

Permalink
ci: allow manually running release action (without releasing)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgomesdev committed Dec 24, 2023
1 parent b67f66b commit bb7bcec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Release
on:
push:
branches: ["main"]
workflow_dispatch:

jobs:
build-server:
Expand Down Expand Up @@ -86,6 +87,7 @@ jobs:
release:
needs: [build-server, build-app]
runs-on: ubuntu-latest
if: github.ref_name == 'main'

steps:
- uses: actions/checkout@v3
Expand All @@ -95,7 +97,7 @@ jobs:
with:
path: artifacts/
merge-multiple: true

- name: 🧐 - Display structure of downloaded artifacts
run: ls -R artifacts/

Expand Down

0 comments on commit bb7bcec

Please sign in to comment.