We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241108e commit 593a22eCopy full SHA for 593a22e
.github/workflows/main.yml
@@ -17,5 +17,11 @@ jobs:
17
run: |
18
echo Add other actions to build,
19
echo test, and deploy your project.
20
- - name: Run publish script
21
- uses: jag-sfdc/sfdx-publish-action@master
+ - name: Hello world action step
+ id: hello
22
+ uses: actions/hello-world-javascript-action@v1
23
+ with:
24
+ who-to-greet: 'Mona the Octocat'
25
+ # Use the output from the `hello` step
26
+ - name: Get the output time
27
+ run: echo "The time was ${{ steps.hello.outputs.time }}"
0 commit comments