Skip to content

Commit

Permalink
(DOCSP-36596): Add a workflow to push the C++ template app to the art…
Browse files Browse the repository at this point in the history
  • Loading branch information
dacharyc authored Mar 18, 2024
1 parent 18f3cf8 commit 05978d6
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/push-artifact-cpp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Push Artifact - C++

on:
push:
branches:
- main
paths:
- "sync-todo/v2/generated/cpp/**"

jobs:
push:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/push-to-artifact-repo
with:
source: ./sync-todo/v2/generated/cpp
destination_repo: mongodb/template-app-cpp-todo.git
access_token: ${{ secrets.ARTIFACT_REPO_ACCESS_TOKEN }}

0 comments on commit 05978d6

Please sign in to comment.