Skip to content

Commit

Permalink
Use vercel/ncc
Browse files Browse the repository at this point in the history
  • Loading branch information
Chadiii committed Oct 12, 2023
1 parent a1e2b3c commit 4f058fe
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 101 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on: [push]

jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
# To use this repository's private action,
# you must check out the repository
- name: Checkout
uses: actions/checkout@v4
- name: Hello world action step
uses: ./ # Uses an action in the root directory
id: hello
with:
resource: 'resource'
method: 'load'
flags: '-f file.yaml'

# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.result }}"
Loading

0 comments on commit 4f058fe

Please sign in to comment.