Skip to content

Commit

Permalink
doh
Browse files Browse the repository at this point in the history
  • Loading branch information
thejoeker12 committed Oct 31, 2024
1 parent fc03567 commit 9f723a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/update_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

TOKEN = os.environ.get("GITHUB_TOKEN")
DROPFILE_PATH = os.environ.get("ARTIFACT_PATH")
GIT_TAG = os.environ.get("RELEASE_TAG")
GIT_TAG = os.environ.get("GIT_TAG")

ENV_VARS = [TOKEN, DROPFILE_PATH]
ENV_VARS = [TOKEN, DROPFILE_PATH, GIT_TAG]

if any (i == "" for i in ENV_VARS):
raise KeyError(f"one or more env vars are empty: {ENV_VARS}")
Expand Down
2 changes: 1 addition & 1 deletion workload/terraform/jamfpro/categories.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resource "jamfpro_category" "category_2" {
}

resource "jamfpro_category" "category_3" {
name = "Marketing-1 - JL Demo V2"
name = "Marketing-1 - JL cheese Demo V2"
}


0 comments on commit 9f723a3

Please sign in to comment.