From b8bbb04832bfe24d6370e18a895578ca0a86604a Mon Sep 17 00:00:00 2001 From: Kevin Gilpin Date: Mon, 30 Oct 2023 17:45:56 -0400 Subject: [PATCH] ci: (AppMap) Save AppMaps to the Actions cache --- .github/workflows/main.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c73c922..465f935 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,4 +20,11 @@ jobs: bundler-cache: true - name: Run tests - run: bundle exec rails test \ No newline at end of file + run: bundle exec rails test + + - name: Save AppMaps + uses: actions/cache/save@v3 + if: always() + with: + path: ./tmp/appmap + key: appmaps-${{ github.sha }}-${{ github.run_attempt }} \ No newline at end of file