Skip to content

Commit

Permalink
Merge pull request #5 from daily-co/upgrade-actions-core-1.10.0
Browse files Browse the repository at this point in the history
Upgrade @actions/core to v1.10.0 to fix set-output deprecation
  • Loading branch information
counterleft authored Jul 13, 2023
2 parents 5499777 + 3ed1dfd commit be5bdff
Show file tree
Hide file tree
Showing 5 changed files with 6,627 additions and 4,482 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@ being used in the workflow.

# Inputs

- *app-name*: the name of the application being deployed
- *environment*: the name of the environment to which the application is being deployed
- *github-token*: a GitHub access token that gives the action access to tag the repository
- _app-name_: the name of the application being deployed
- _environment_: the name of the environment to which the application is being deployed
- _github-token_: a GitHub access token that gives the action access to tag the repository

# Outputs

- *tag*: the name of the final generated tag
- _tag_: the name of the final generated tag

# Notes

We want to use this from multiple repos without duplicating the code. However, GitHub Actions does not support
using actions in one private repo from another repo. The workaround is to clone the repo containing the action
We want to use this from multiple repos without duplicating the code. However, GitHub Actions does not support
using actions in one private repo from another repo. The workaround is to clone the repo containing the action
in a separate `actions/checkout` step, and refer to it using the path in which it gets checked out.

# Example Usage
Expand Down Expand Up @@ -69,8 +69,9 @@ jobs:

```
# Once, for setting up ncc:
$ npm i -g @zeit/ncc
$ npm i -g @vercel/ncc
# When changed:
$ npm i
$ ncc build
```
Loading

0 comments on commit be5bdff

Please sign in to comment.