{
    "componentChunkName": "component---src-components-blog-post-jsx",
    "path": "/blog/adding-environment-variables-to-github-actions/",
    "result": {"data":{"site":{"siteMetadata":{"author":"Monica Powell","siteUrl":"https://www.aboutmonica.com"}},"mdx":{"id":"3b0fb3d2-2633-5a19-be58-71b3b1bab34c","timeToRead":2,"body":"var _excluded = [\"components\"];\n\nfunction _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }\n\nfunction _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }\n\nfunction _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }\n\n/* @jsxRuntime classic */\n\n/* @jsx mdx */\nvar _frontmatter = {\n  \"title\": \"Adding Environment Variables To GitHub Actions\",\n  \"date\": \"2020-08-23T22:58:47.356Z\",\n  \"template\": \"post\",\n  \"slug\": \"adding-environment-variables-to-github-actions\",\n  \"category\": [\"tutorial\"],\n  \"tags\": [\"GitHub\"],\n  \"description\": \"This article  walks through how to pass environment variables to GitHub Action Workflows\"\n};\nvar layoutProps = {\n  _frontmatter: _frontmatter\n};\nvar MDXLayout = \"wrapper\";\nreturn function MDXContent(_ref) {\n  var components = _ref.components,\n      props = _objectWithoutProperties(_ref, _excluded);\n\n  return mdx(MDXLayout, _extends({}, layoutProps, props, {\n    components: components,\n    mdxType: \"MDXLayout\"\n  }), mdx(\"p\", null, \"This article walks through how to pass environment variables to \", mdx(\"a\", {\n    parentName: \"p\",\n    \"href\": \"https://github.com/features/actions\"\n  }, \"GitHub Action\"), \" Workflows. I recently set up GitHub actions on this site to automatically run unit tests whenever I open a new Pull Request to ensure that changes to the site were not introduction breaking changes to unit tests under the radar.\"), mdx(\"p\", null, \"I ran into some hiccups when setting it up so that the workflow could install the Font Awesome dependency which requires an NPM token. I went through a few of my GitHub Actions build minutes while testing how to properly pass environment variables to my \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \".github/workflow/test.yml\"), \" file. Hopefully this article saves you some time and build minutes the next time you set up environment variables for GitHub Actions.\"), mdx(\"p\", null, \"In order to setup my GitHub Action, I modeled my new GitHub Action workflow after similar functional workflows and expected everything to run smoothly. However, I merged the pull request with my changes and saw on the Pull Request that the step of the GitHub Action workflow that installed dependencies failed with the following error:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"error An unexpected error occurred: \\\"Failed to replace env in config: $\\n{FONTAWESOME_NPM_AUTH_TOKEN}\\\"\\n\")), mdx(\"p\", null, \"And then I remembered \\uD83D\\uDCA1 my site requires an environment variable to build and deploy. Locally I have \", mdx(\"a\", {\n    parentName: \"p\",\n    \"href\": \"https://docs.npmjs.com/configuring-npm/npmrc.html\"\n  }, mdx(\"inlineCode\", {\n    parentName: \"a\"\n  }, \".npmrc\")), \" file that sets up the the npm configuration to pass in the appropriate environment variable for my site and looks like:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\"\n  }, \"@fortawesome:registry=https://npm.fontawesome.com/\\n//npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}\\n\")), mdx(\"p\", null, \"In particular the GitHub Action workflow did not have access to the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"FONTAWESOME_NPM_AUTH_TOKEN\"), \" which I have set in my \", mdx(\"em\", {\n    parentName: \"p\"\n  }, \"local\"), \" bash profile and passed into the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \".npmrc\"), \" file. So I needed to give the GitHub repository that is running this actions access to the environment variable by going to its settings page. You can access settings by clicking \\\"Settings\\\" in the repository's navigation. The url to update secrets for a repository (at the time of this writing) looks like: \", mdx(\"a\", {\n    parentName: \"p\",\n    \"href\": \"https://github.com/username/repo/settings/secrets\"\n  }, \"https://github.com/username/repo/settings/secrets\"), \" where username and repo should be replaced with the username and repo of the desired repository and clicking \\\"new secret\\\".\"), mdx(\"p\", null, mdx(\"img\", {\n    parentName: \"p\",\n    \"src\": \"/media/github-env-setup.png\",\n    \"alt\": null\n  })), mdx(\"p\", null, \"Above is a screenshot of what the secrets page under my repository settings looked like once I added the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"FONTAWESOME_NPM_AUTH_TOKEN\"), \".\"), mdx(\"p\", null, \"Now, that my repository had access to the environment variable I needed to update each job within my action to also have access to the variables. Before adding the environment variable to my repository my GitHub Action the job that installed dependencies looked like:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\",\n    \"className\": \"language-yml\"\n  }, \" - name: Install Dependencies\\n      run: npm install\\n\")), mdx(\"p\", null, \"after adding the environment variable I updated the dependency installation job to:\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\",\n    \"className\": \"language-yml\"\n  }, \"- name: Install Dependencies\\n      run: |\\n        npm config set //npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}\\n        npm ci\\n      env:\\n        FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}\\n\")), mdx(\"p\", null, mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"npm config set\"), \" allowed me to manually set the npm configuration outside of the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \".npmrc\"), \" file and pass in the appropriate environment variable. I also updated \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"npm install\"), \" to \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"npm ci\"), \" which installs a project with a clean slate and is better suited for a CI environment. Finally after the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"run\"), \" values I passed in a \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"env\"), \" key that contained \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"FONTAWESOME_NPM_AUTH_TOKEN\"), \" which referenced \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}\"), \" a.k.a the \", mdx(\"inlineCode\", {\n    parentName: \"p\"\n  }, \"secrets\"), \" from \", mdx(\"em\", {\n    parentName: \"p\"\n  }, \"this\"), \" GitHub repository.\"), mdx(\"p\", null, \"The full GitHub action workflow I ended up using to install all dependencies (including Font Awesome which required a token ) and running unit tests looked like the below. Note: the test command also needed access to the same environment variable and needed it to be set separately in order for the GitHub Action to successfully run without running into the error we saw earlier with retrieving the environment variable.\"), mdx(\"pre\", null, mdx(\"code\", {\n    parentName: \"pre\",\n    \"className\": \"language-yml\"\n  }, \"name: CI\\n\\non:\\n# will run on all PRs that are opened or updated (synchronized)\\npull_request:\\n  types: [opened, synchronize, reopened]\\n\\njobs:\\ntest:\\n  name: Test\\n  runs-on: ubuntu-latest\\n  env:\\n    CI: true\\n  steps:\\n    - uses: actions/checkout@v2\\n    - name: Use Node.js 13.x\\n      uses: actions/setup-node@v1\\n      with:\\n        node-version: 13.x\\n    - name: Install Dependencies\\n      run: | # run multiple commands\\n        npm config set //npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}\\n        npm ci\\n      env:\\n        FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}\\n    - name: Test\\n      run: | # run multiple commands\\n        npm config set //npm.fontawesome.com/:_authToken=${FONTAWESOME_NPM_AUTH_TOKEN}\\n        npm run test\\n      env:\\n        FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }}\\n```\\n\")));\n}\n;\nMDXContent.isMDXComponent = true;","tableOfContents":{},"frontmatter":{"title":"Adding Environment Variables To GitHub Actions","date":"August 23, 2020","description":"This article  walks through how to pass environment variables to GitHub Action Workflows","tags":["GitHub"]}},"allWebMentionEntry":{"edges":[{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1233927281141108736","wmProperty":"like-of","wmId":844131,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1233927281141108736","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/bighireio","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/1f72a6068cb29ebd733f55c9011469ed8a5d305d0a162fe6551e85d77239253b.jpg","name":"Vince Fulco (\"It\" or \"Yoda\")"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/911643033426448384","wmProperty":"like-of","wmId":843912,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-911643033426448384","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/SoyBhalut","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/1c38fae0846060e20007552a13bfe4bfa4c2fe42d18f874d520f44509f5e7d04.jpg","name":"Abdel Mejia 🤖"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298287474767273987","wmProperty":"repost-of","wmId":843911,"type":"entry","url":"https://twitter.com/SoyBhalut/status/1298287474767273987","likeOf":null,"author":{"url":"https://twitter.com/SoyBhalut","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/1c38fae0846060e20007552a13bfe4bfa4c2fe42d18f874d520f44509f5e7d04.jpg","name":"Abdel Mejia 🤖"},"published":"August 25, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/25129421","wmProperty":"like-of","wmId":843804,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-25129421","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/LuciCodes","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/b0436bd0d318698132fe1002abdf5d264941874a384f67b8a229fd351272c06c.jpg","name":"laTiaLuci"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/4852171092","wmProperty":"like-of","wmId":843790,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-4852171092","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/spaceGirl_o","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a31a5531da418234f76f76a254fd1ce822fd392120b25e6d5a7f50104a520fca.jpg","name":"Star woman😎🍿🌟👑"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/107260894","wmProperty":"like-of","wmId":843789,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-107260894","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/shannonclarkebb","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/1476d98f0bb771c41d81988cf6a9f7b7a465f6e0bccab0c97cf133adb4a6bfac.jpg","name":"Shannon Clarke"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1301095548","wmProperty":"like-of","wmId":843753,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1301095548","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/LorienMCS","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/d4c166b8e60376742a060096bd9efecb5ce6d1a73d39977390cd45897d91221f.jpg","name":"Lorien"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/2696891982","wmProperty":"like-of","wmId":843715,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-2696891982","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/ashnita01","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/20b92255b0bba664711630b27fdce163c09bc1ab35d002eb5b9f2c723ac0ddbe.jpg","name":"Ashnita Bali"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/2313873457","wmProperty":"like-of","wmId":843707,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-2313873457","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/sseraphini","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/d50a63dd59e0335254f1a192acef3cc5329d87c5f9e48b370c75b9593f1d8314.jpg","name":"Sibelius Seraphini"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/14313445","wmProperty":"like-of","wmId":843706,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-14313445","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/Jamesso","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/5941e406b933a58006217d639b76615332475323ded0f1e93b15645cec076d59.jpg","name":"James Sorbello"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/158065720","wmProperty":"like-of","wmId":843687,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-158065720","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/saronyitbarek","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/f0ce2e75596dfff5bbbbfc6747f07a6dea6bd8335a78ba0b5cd8ec9219de3b99.jpg","name":"Saron"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1285589380862627841","wmProperty":"like-of","wmId":843686,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1285589380862627841","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/NepMontanez","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/ce7190c3bd2f2fa14d1e9f0b138801513ba586bfa6f80255fea4db6bbbc41ff3.jpg","name":"Nep Montanez"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/35671219","wmProperty":"like-of","wmId":843685,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-35671219","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/bogdanos","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/4cb102d5755baeff2003ad354400454eb213a4d8e2e8781d2081e5523ba97c6b.jpg","name":"Herakles Bogdanos"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/760290665611657216","wmProperty":"like-of","wmId":843665,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-760290665611657216","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/codelaboc","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/b5aff7b0a778ba2c5b6432ebdadc232c8a6d2f2c841c9a80e0d51a2733d58752.jpg","name":"CodeLab 🔬"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1093021363512569857","wmProperty":"like-of","wmId":843645,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1093021363512569857","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/saucedopen","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/aa14b2b86cc9abb077543b840488e47d19879f0fe68ab863299ba24f646d8a9e.jpg","name":"Open Sauced"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/143121774","wmProperty":"like-of","wmId":843644,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-143121774","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/jaclynejimenez","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/64b47188f6f3b3d7461750b87e90a76443669c56020b77518a15bc12c778832a.jpg","name":"Jaclyn E. Jiménez de Vries (she/her)"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/20643500","wmProperty":"like-of","wmId":843628,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-20643500","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/TreTuna","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/4fc7c905a7b1df3ae1b1b6b3783742ab18a9873425f6d863c553373fb5bf4395.jpg","name":"Tre Tuna"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298062593727356928","wmProperty":"repost-of","wmId":843622,"type":"entry","url":"https://twitter.com/TerabyteTiger/status/1298062593727356928","likeOf":null,"author":{"url":"https://twitter.com/TerabyteTiger","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/e15e2d7b99273698dc2332275bfb1a1a52da63a012e8afbd603a5d2aab3be9f5.jpg","name":"Tyler"},"published":"August 25, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298064899130753024","wmProperty":"repost-of","wmId":843621,"type":"entry","url":"https://twitter.com/TheSecretJunio1/status/1298064899130753024","likeOf":null,"author":{"url":"https://twitter.com/TheSecretJunio1","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/390643e2d718f9dd3ee2b92c2b845c95be2e5b7584a8cc24da366f2e6480023b.jpg","name":"The Secret Junior Developer"},"published":"August 25, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/4808854922","wmProperty":"like-of","wmId":843620,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-4808854922","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/aldosoftdev","type":"card","photo":"https://webmention.io/avatar/abs.twimg.com/0e6b2cd70aa5b35dec24ca4e1e63f8963f0118736d9ec3bba77e3a8c99a27bc2.png","name":"Aldo Avilés Perata"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/44207545","wmProperty":"like-of","wmId":843619,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-44207545","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/CCPustejovsky","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/2f4a6cfc04af3dc4283d729fc06c7bf2138ec92d7e22152be09aaf7e3718deee.jpg","name":"Charles C. Pustejovsky III 👍"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1281062384811950081","wmProperty":"like-of","wmId":843618,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1281062384811950081","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/ceofpiedpiper","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a2abd377e2dba47ba7b3b2b5dd3a2300af13ed1c4f4d96dae664797b98666001.jpg","name":"Richard Hendricks"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/post/twitter/waterproofheart/1298036543358107648","wmProperty":"mention-of","wmId":843611,"type":"entry","url":"https://twitter.com/ThePracticalDev/status/1298036543358107648","likeOf":null,"author":{"url":"https://twitter.com/ThePracticalDev","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a863ba4d67a1e8a185e9624485ea37a415d167e21ed08bc2c63f5bf7c0a05077.jpg","name":"DEV Community 👩‍💻👨‍💻"},"published":"August 24, 2020","content":{"text":"Awesome! You can also find Monica's helpful post on DEV: dev.to/m0nica/adding-…\n#actionshackathon"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298035691033694215","wmProperty":"repost-of","wmId":843609,"type":"entry","url":"https://twitter.com/laurieontech/status/1298035691033694215","likeOf":null,"author":{"url":"https://twitter.com/laurieontech","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/88eb169f2e962af928bd48c299e3b7e6498b0d59c28536d15ddc583e39950465.jpg","name":"Laurie"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298036406128906242","wmProperty":"repost-of","wmId":843608,"type":"entry","url":"https://twitter.com/mtliendo/status/1298036406128906242","likeOf":null,"author":{"url":"https://twitter.com/mtliendo","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/708e6c5d87ed43cab1f40b925443c51bd52e2eb229b8d8c3069df5b598710248.jpg","name":"Michael Liendo"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298036519479971840","wmProperty":"repost-of","wmId":843607,"type":"entry","url":"https://twitter.com/nullwhere/status/1298036519479971840","likeOf":null,"author":{"url":"https://twitter.com/nullwhere","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/bf635c365fd27d2ebce8e7b6bccd44ff9256cda0eedd34aa7cba38ca9e361011.jpg","name":"Jen Downs"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/767793971196145664","wmProperty":"like-of","wmId":843605,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-767793971196145664","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/maxi_mizar","type":"card","photo":"https://webmention.io/avatar/abs.twimg.com/0e6b2cd70aa5b35dec24ca4e1e63f8963f0118736d9ec3bba77e3a8c99a27bc2.png","name":"Mizar"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298036840579108864","wmProperty":"repost-of","wmId":843606,"type":"entry","url":"https://twitter.com/chan_dev_14/status/1298036840579108864","likeOf":null,"author":{"url":"https://twitter.com/chan_dev_14","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/4683bffde616adfb597a7f3dfb54df70d95fb33e149edccefbdb350e7ec12160.jpg","name":"chanDev"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/17159131","wmProperty":"like-of","wmId":843604,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-17159131","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/Md_Harris","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/4ff6c3047f6eb1d6ce2593ee48292ff5658791355815486911c508353b8ef48d.jpg","name":"Matt Harris"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/97541737","wmProperty":"like-of","wmId":843601,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-97541737","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/ktrinbean","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/5856251b4386e837933bc3455417f5e541133aae11476b0c68c9a80caed4643c.jpg","name":"Catrina Dean"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298037746800324608","wmProperty":"repost-of","wmId":843600,"type":"entry","url":"https://twitter.com/TechBadGuyy/status/1298037746800324608","likeOf":null,"author":{"url":"https://twitter.com/TechBadGuyy","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/b9d7d99309da05753d09c63f1815bd1288f8c6ae79c9dd52f4a3a15dd344d567.jpg","name":"TechBadGuy"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/3115345708","wmProperty":"like-of","wmId":843598,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-3115345708","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/maxcell","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a883720df399748ec3c5e79fdb00e3bcfa1aed681d0b2db5977e20976816186d.jpg","name":"Prince Wilson"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/repost/twitter/waterproofheart/1298035598310215681/1298038837495525377","wmProperty":"repost-of","wmId":843599,"type":"entry","url":"https://twitter.com/SamJessSingh/status/1298038837495525377","likeOf":null,"author":{"url":"https://twitter.com/SamJessSingh","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/56c4482d4a712abe7ff8bf2b5ecb565187cdaf65b035e26a384389eece8d2902.jpg","name":"Samantha Singh"},"published":"August 24, 2020","content":{"text":"If you're participating in the @ThePracticalDev #ActionsHackathon and your GitHub Action workflow requires an API key to run check out this"}}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1018326176673042432","wmProperty":"like-of","wmId":843597,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1018326176673042432","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/averageDope_Joe","type":"card","photo":"https://webmention.io/avatar/abs.twimg.com/0e6b2cd70aa5b35dec24ca4e1e63f8963f0118736d9ec3bba77e3a8c99a27bc2.png","name":"maxosen74"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/140509787","wmProperty":"like-of","wmId":843595,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-140509787","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/Ajuna_Ky","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/80e64d37bf0ee0e0038269385400266fccf41a7804ebfe102d5c90741fceb024.jpg","name":"Ajuna 🇹🇿"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/99121168","wmProperty":"like-of","wmId":843596,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-99121168","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/mscccc","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/ae3a71e51828cc0177ad016b587ba2f9145fced36ecb1e1df336b3469cd0b441.jpg","name":"Mike Coutermarsh"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/948609064484864006","wmProperty":"like-of","wmId":843594,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-948609064484864006","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/laurieontech","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/88eb169f2e962af928bd48c299e3b7e6498b0d59c28536d15ddc583e39950465.jpg","name":"Laurie"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/2735246778","wmProperty":"like-of","wmId":843593,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-2735246778","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/ThePracticalDev","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a863ba4d67a1e8a185e9624485ea37a415d167e21ed08bc2c63f5bf7c0a05077.jpg","name":"DEV Community 👩‍💻👨‍💻"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/729163501","wmProperty":"like-of","wmId":843591,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-729163501","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/AngelORojasP","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/febf96a0a605d76ac68870bc15f1db4998c76df3dadfdb2f1febc7620824b5e2.jpg","name":"@ngel O. Rojas P."},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/190648839","wmProperty":"like-of","wmId":843592,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-190648839","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/pjohanneson","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/7ee01058b451e5797a48ec0186a4be22e2d320918af3c5eccbefdef177bb509a.jpg","name":"Patrick Johanneson"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/749995687","wmProperty":"like-of","wmId":843590,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-749995687","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/mtliendo","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/708e6c5d87ed43cab1f40b925443c51bd52e2eb229b8d8c3069df5b598710248.jpg","name":"Michael Liendo"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/267274166","wmProperty":"like-of","wmId":843588,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-267274166","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/Renejean11","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/a27fcfb96440e93aec4e026112f8397fa26bfd54b26f1da1aefcfa692233f2f4.jpg","name":"René-Jean Corneille"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/3267234236","wmProperty":"like-of","wmId":843589,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-3267234236","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/nullwhere","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/bf635c365fd27d2ebce8e7b6bccd44ff9256cda0eedd34aa7cba38ca9e361011.jpg","name":"Jen Downs"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/111217362","wmProperty":"like-of","wmId":843587,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-111217362","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/bdougieYO","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/c625cbd65947d883a4619af20f3935ced344a12bb40923a15eb36f7f1f420b58.jpg","name":"Brian Douglas"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/837424448085110784","wmProperty":"like-of","wmId":843585,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-837424448085110784","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/carolstran","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/7abe9ca520ae85167ee8cb9140e4206b44abc9aa40ebe177093c34122d6bb879.jpg","name":"Carolyn Stransky"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1206793041153007617","wmProperty":"like-of","wmId":843586,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1206793041153007617","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/DTony101","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/ec9ad9d752c7bdaafe5b7ff29c4bdc14501438783b40fb7f57088a8b6c63cc5f.jpg","name":"Miguel Manjarres"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/546985151","wmProperty":"like-of","wmId":843584,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-546985151","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/PeterKimFrank","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/2a962005f76604491090996579e9a57dafaa773e802a1a07a5563163b5d9d0df.jpg","name":"Peter Frank"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1116516186559090688","wmProperty":"like-of","wmId":843582,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1116516186559090688","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/chan_dev_14","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/4683bffde616adfb597a7f3dfb54df70d95fb33e149edccefbdb350e7ec12160.jpg","name":"chanDev"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/1214943582521643008","wmProperty":"like-of","wmId":843583,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-1214943582521643008","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/TechBadGuyy","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/b9d7d99309da05753d09c63f1815bd1288f8c6ae79c9dd52f4a3a15dd344d567.jpg","name":"TechBadGuy"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/2151658788","wmProperty":"like-of","wmId":843581,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-2151658788","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/oluco_de","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/f82be2e7f04075d0d961d479663cccfe0113b6861703e47100925e4db3ca284f.jpg","name":"Olumide Falomo."},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/758325923313754112","wmProperty":"like-of","wmId":843580,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-758325923313754112","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/Wisdom_Ekpotu","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/b50a08cf082421bfca529aaf616b66590c58c2b5721c5a11fe1d2208e82f5ce1.jpg","name":"Wisdom Ekpotu 🚀"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/like/twitter/waterproofheart/1298035598310215681/14946149","wmProperty":"like-of","wmId":843579,"type":"entry","url":"https://twitter.com/waterproofheart/status/1298035598310215681#favorited-by-14946149","likeOf":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","author":{"url":"https://twitter.com/andreasklinger","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/fa2057bfd437fef3be4160802f82f2336ea94cd9e6c561cbe9750e1888683739.jpg","name":"Andreas Klinger ✌️"},"published":null,"content":null}},{"node":{"wmTarget":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","wmSource":"https://brid-gy.appspot.com/comment/twitter/waterproofheart/1298035598310215681/1298037117952512000","wmProperty":"in-reply-to","wmId":843578,"type":"entry","url":"https://twitter.com/mscccc/status/1298037117952512000","likeOf":null,"author":{"url":"https://twitter.com/mscccc","type":"card","photo":"https://webmention.io/avatar/pbs.twimg.com/ae3a71e51828cc0177ad016b587ba2f9145fced36ecb1e1df336b3469cd0b441.jpg","name":"Mike Coutermarsh"},"published":"August 24, 2020","content":{"text":"😍"}}}]}},"pageContext":{"permalink":"https://www.aboutmonica.com/blog/adding-environment-variables-to-github-actions/","slug":"/blog/adding-environment-variables-to-github-actions/","prev":{"id":"458d7e83-bae7-5158-82bc-c8f5b59216d5","frontmatter":{"title":"Migrating To MDX Talk","category":["reflection"],"date":"2020-08-24T22:22:11.178Z","slug":"migrating-to-mdx","tags":["MDX","video"],"redirects":null},"fields":{"slug":"/blog/migrating-to-mdx/"}},"next":{"id":"240c3fa5-f4bc-5823-8afd-5f1fc3395e25","frontmatter":{"title":"6 Transformative Tech Conference Talks","category":["reflection"],"date":"2020-08-22T11:59:17.462Z","slug":"transformative-conference-talks","tags":["Conferences","video"],"redirects":null},"fields":{"slug":"/blog/transformative-conference-talks/"}}}},
    "staticQueryHashes": ["1977783444","764694655"]}