You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To build a new copy of this workflow for development:
506
+
507
+
<br />
508
+
509
+
### Install
510
+
511
+
```shell
512
+
npm install
513
+
```
514
+
515
+
<br />
516
+
517
+
### New Github Release
518
+
To push a new release, first run eslint locally to check for issues
519
+
```shell
520
+
npm run lint
521
+
```
522
+
523
+
<br />
495
524
525
+
Then open the `package.json` and bump the version. Then push the updated `package.json` file to the repo:
526
+
```json
527
+
{
528
+
"name": "delete-deployment-environment",
529
+
"version": "3.0.1",
530
+
}
531
+
```
532
+
533
+
<br />
534
+
535
+
Run the workflow `release-publish.yml` from https://github.com/Aetherinox/delete-deploy-env-action/actions.
536
+
537
+
<br />
538
+
539
+
Once you run the publish workflow, a second workflow will be ran: `.github\workflows\release-publish-tag-latest.yml`. This will create an additional new release with the tag `latest` so that you can use the workflow in your .yml file under the `latest` tag:
0 commit comments