Skip to content

Commit

Permalink
Roll back
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexRuiz7 committed Aug 16, 2024
1 parent 1f80abb commit c40c900
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ name: Build packages
# This workflow runs when any of the following occur:
# - Run manually
# - Invoked from another workflow
# - On push to branches named after ci/*
on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -34,10 +33,6 @@ on:
description: "ID used to identify the workflow uniquely."
type: string
required: false
push:
# Sequence of patterns matched against refs/heads
branches:
- "ci/*"

# ==========================
# Bibliography
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/build_on_push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Build packages (on push)

# This workflow runs when any of the following occur:
# - On push to branches named after ci/*
on:
push:
# Sequence of patterns matched against refs/heads
branches:
- "ci/*"

jobs:
call-build-workflow:
uses: ./.github/workflows/build.yml
secrets: inherit

0 comments on commit c40c900

Please sign in to comment.