Skip to content

Commit 0b27972

Browse files
authored
Done
1 parent e4008e5 commit 0b27972

2 files changed

Lines changed: 12 additions & 11 deletions

File tree

.github/decoded_file

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
snehalc25laGFsIGphZGhhdgo=
1+
c25laGFsIGphZGhhdgo=

.github/workflows/hellow.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,17 @@ on:
1717
type: string
1818

1919

20-
jobs:
21-
hello:
20+
jobs:
21+
greet:
2222
runs-on: ubuntu-latest
23-
name: my-job
2423
steps:
25-
- name: Checkout repository
26-
uses: actions/checkout@v3
27-
28-
- name: hello
24+
- name: Decode File Content
25+
run: |
26+
echo "${{ inputs.data }}" | base64 --decode > ./decoded_file.txt
27+
- name: Display Greeting
28+
run: |
29+
echo "${{ inputs.greeting }}, ${{ inputs.name }}!"
30+
- name: Display File Content
2931
run: |
30-
echo "${{ inputs.data }}" | base64 --decode > ./mydata
31-
echo "${{inputs.greeting}}"
32-
cat ./mydata
32+
echo "Contents of the file:"
33+
cat ./decoded_file.txt

0 commit comments

Comments
 (0)