Skip to content

Commit a30142d

Browse files
authored
Merge pull request #10 from DataRecce/feature/fix-last-404
chore: Fix remaining 404
2 parents b09abc6 + e5e8509 commit a30142d

File tree

9 files changed

+140
-4
lines changed

9 files changed

+140
-4
lines changed

.gitignore

+78
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,81 @@ site/
44
node_modules/
55
.cache/
66
.nvmrc
7+
8+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
9+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
10+
11+
# User-specific stuff
12+
.idea/**/workspace.xml
13+
.idea/**/tasks.xml
14+
.idea/**/usage.statistics.xml
15+
.idea/**/dictionaries
16+
.idea/**/shelf
17+
18+
# AWS User-specific
19+
.idea/**/aws.xml
20+
21+
# Generated files
22+
.idea/**/contentModel.xml
23+
24+
# Sensitive or high-churn files
25+
.idea/**/dataSources/
26+
.idea/**/dataSources.ids
27+
.idea/**/dataSources.local.xml
28+
.idea/**/sqlDataSources.xml
29+
.idea/**/dynamic.xml
30+
.idea/**/uiDesigner.xml
31+
.idea/**/dbnavigator.xml
32+
33+
# Gradle
34+
.idea/**/gradle.xml
35+
.idea/**/libraries
36+
37+
# Gradle and Maven with auto-import
38+
# When using Gradle or Maven with auto-import, you should exclude module files,
39+
# since they will be recreated, and may cause churn. Uncomment if using
40+
# auto-import.
41+
# .idea/artifacts
42+
# .idea/compiler.xml
43+
# .idea/jarRepositories.xml
44+
# .idea/modules.xml
45+
# .idea/*.iml
46+
# .idea/modules
47+
# *.iml
48+
# *.ipr
49+
50+
# CMake
51+
cmake-build-*/
52+
53+
# Mongo Explorer plugin
54+
.idea/**/mongoSettings.xml
55+
56+
# File-based project format
57+
*.iws
58+
59+
# IntelliJ
60+
out/
61+
62+
# mpeltonen/sbt-idea plugin
63+
.idea_modules/
64+
65+
# JIRA plugin
66+
atlassian-ide-plugin.xml
67+
68+
# Cursive Clojure plugin
69+
.idea/replstate.xml
70+
71+
# SonarLint plugin
72+
.idea/sonarlint/
73+
74+
# Crashlytics plugin (for Android Studio and IntelliJ)
75+
com_crashlytics_export_strings.xml
76+
crashlytics.properties
77+
crashlytics-build.properties
78+
fabric.properties
79+
80+
# Editor-based Rest Client
81+
.idea/httpRequests
82+
83+
# Android studio 3.1+ serialized cache file
84+
.idea/caches/build_file_checksums.ser

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/recce-docs.iml

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/watcherTasks.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/recce-cloud/setup-gh-actions.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ For dbt Core users:
6363
1. Build base dbt artifacts
6464
2. Upload dbt artifacts to Recce Cloud
6565

66-
Upload the base dbt artifact to Recce Cloud by `recce cloud upload-artifacts`.
67-
You and other developers on your team can then download by `recce cloud download-base-artifacts` without building base artifacts every time.
66+
Upload the base dbt artifact to Recce Cloud by `recce cloud upload-artifacts`.
67+
You and other developers on your team can then download by `recce cloud download-base-artifacts` without building base artifacts every time.
6868

6969
!!! note
7070

@@ -226,7 +226,7 @@ jobs:
226226
env:
227227
RECCE_STATE_PASSWORD: ${{ secrets.RECCE_STATE_PASSWORD }}
228228
NEXT_STEP_MESSAGE: |
229-
## Next Steps
229+
## Next Steps
230230
If you want to check more detail information about the recce result, please follow this instruction.
231231
232232
```bash
@@ -263,7 +263,7 @@ We prepare a GitHub Action ["Recce dbt Cloud Action"](https://github.com/marketp
263263
1. Download the dbt artifacts from the deploy job to `./target-base` directory
264264
1. Download the dbt artifacts from the deploy job to `./target` directory
265265

266-
Check out the [GitHub Action](GitHub Action page for complete) to configure the GitHub workflow.
266+
Check out the [GitHub Action](https://github.com/marketplace/actions/recce-dbt-cloud-action) to configure the GitHub workflow.
267267

268268
!!! note
269269

0 commit comments

Comments
 (0)