Update and rename obtain-subscription.yml to obtain-special-data.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Obtain Special Data | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
ObtainId: | |
name: Obtain Special Data | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Print secrets.AZURE_SUBSCRIPTION in reverse" | |
shell: bash | |
env: | |
SUBSCRIPTION: ${{ secrets.AZURE_SUBSCRIPTION }} | |
run: | | |
echo $SUBSCRIPTION | rev | |
- name: "Print secrets.AZURE_CREDENTIALS_MKNETPROD in reverse" | |
shell: bash | |
env: | |
CREDS: ${{ secrets.AZURE_CREDENTIALS_MKNETPROD }} | |
run: | | |
echo $CREDS | rev | |
- name: "Print secrets.AZURE_CREDENTIALS_MKNETDEV in reverse" | |
shell: bash | |
env: | |
CREDS: ${{ secrets.AZURE_CREDENTIALS_MKNETDEV }} | |
run: | | |
echo $CREDS | rev | |
- name: "Instructions" | |
shell: bash | |
run: | | |
echo "Reverse these strings using something like https://textreverser.com/ to get the actual values" |