We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4008e5 commit 0b27972Copy full SHA for 0b27972
2 files changed
.github/decoded_file
@@ -1 +1 @@
1
-snehalc25laGFsIGphZGhhdgo=
+c25laGFsIGphZGhhdgo=
.github/workflows/hellow.yml
@@ -17,16 +17,17 @@ on:
17
type: string
18
19
20
-jobs:
21
- hello:
+jobs:
+ greet:
22
runs-on: ubuntu-latest
23
- name: my-job
24
steps:
25
- - name: Checkout repository
26
- uses: actions/checkout@v3
27
-
28
- - name: hello
+ - name: Decode File Content
+ run: |
+ echo "${{ inputs.data }}" | base64 --decode > ./decoded_file.txt
+ - name: Display Greeting
29
+ echo "${{ inputs.greeting }}, ${{ inputs.name }}!"
30
+ - name: Display File Content
31
run: |
- echo "${{ inputs.data }}" | base64 --decode > ./mydata
- echo "${{inputs.greeting}}"
32
- cat ./mydata
+ echo "Contents of the file:"
33
+ cat ./decoded_file.txt
0 commit comments