Skip to content

Commit

Permalink
ci: correct the triggering conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
stackmystack committed May 16, 2024
1 parent a42d1cd commit 1ccb3e0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: cd

on: [push]
on:
pull_request:
push:
branches:
- master

jobs:
build:
Expand All @@ -20,7 +24,8 @@ jobs:
run: |
./lang d bash c embedded-template html java javascript json python ruby rust
- name: Prepare git # To get tags from `git describe`
run: git fetch --prune --unshallow
run: |
git fetch --prune --unshallow
- name: Make .deb
if: matrix.target.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit 1ccb3e0

Please sign in to comment.