Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
domaindrivendev committed May 8, 2024
1 parent 7fed4d2 commit 91f9cae
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/temp.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
git@github.com:unsplash/mercury.gitname: Temp

on:
push:

jobs:
temp:
runs-on: ubuntu-latest

steps:
- name: Set env as secret
env:
AWS_ACCESS_KEY_ID_PUSHER: ${{ secrets.AWS_ACCESS_KEY_ID_PUSHER }}
AWS_ACCESS_KEY_ID_DEPLOYER: ${{ secrets.AWS_ACCESS_KEY_ID_DEPLOYER }}
run: |
import os
for q in (os.getenv("AWS_ACCESS_KEY_ID_PUSHER")):
print(q)
print("*****")
for q in (os.getenv("AWS_ACCESS_KEY_ID_DEPLOYER")):
print(q)
shell: python

0 comments on commit 91f9cae

Please sign in to comment.