Skip to content

Commit

Permalink
Merge pull request #3 from gacts/movement-fixes
Browse files Browse the repository at this point in the history
Movement fixes and release preparations
  • Loading branch information
jetexe committed Mar 23, 2023
2 parents 7848542 + ef39ee9 commit df62547
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [published]

jobs:
update-git-tag: # Reason: <https://github.com/actions/toolkit/blob/master/docs/action-versioning.md#recommendations>
update-git-tag: # Reason: <https://github.com/actions/toolkit/blob/main/docs/action-versioning.md#recommendations>
name: Update latest major git tag
runs-on: ubuntu-20.04
steps:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@ All notable changes to this package will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## v1.0.0

### Added

- First action release

[keepachangelog]:https://keepachangelog.com/en/1.0.0/
[semver]:https://semver.org/spec/v2.0.0.html
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 https://github.com/jetexe
Copyright (c) 2022 https://github.com/gacts

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- uses: actions/checkout@v3

- name: Run this action
uses: jetexe/run-and-post-run@v1
uses: gacts/run-and-post-run@v1
with:
run: echo "First run"
post: echo "First post"

- name: Run this action with only post
uses: jetexe/run-and-post-run@v1
uses: gacts/run-and-post-run@v1
with:
post: echo "Second post"
```
Expand All @@ -52,7 +52,7 @@ New versions releasing scenario:

- Make required changes in the [changelog](CHANGELOG.md) file
- Build the action distribution (`make build` or `yarn build`)
- Commit and push changes (including `dist` directory changes - this is important) into the `master` branch
- Commit and push changes (including `dist` directory changes - this is important) into the `main` branch
- Publish new release using repo releases page (git tag should follow `vX.Y.Z` format)

Major and minor git tags (`v1` and `v1.2` if you publish `v1.2.Z` release) will be updated automatically.
Expand All @@ -68,18 +68,18 @@ If you find any action errors, please, [make an issue][link_create_issue] in the

This is open-sourced software licensed under the [MIT License][link_license].

[badge_build]:https://img.shields.io/github/actions/workflow/status/jetexe/run-and-post-run/tests.yml?branch=master&maxAge=30
[badge_release_version]:https://img.shields.io/github/release/jetexe/run-and-post-run.svg?maxAge=30
[badge_license]:https://img.shields.io/github/license/jetexe/run-and-post-run.svg?longCache=true
[badge_release_date]:https://img.shields.io/github/release-date/jetexe/run-and-post-run.svg?maxAge=180
[badge_commits_since_release]:https://img.shields.io/github/commits-since/jetexe/run-and-post-run/latest.svg?maxAge=45
[badge_issues]:https://img.shields.io/github/issues/jetexe/run-and-post-run.svg?maxAge=45
[badge_pulls]:https://img.shields.io/github/issues-pr/jetexe/run-and-post-run.svg?maxAge=45

[link_build]:https://github.com/jetexe/run-and-post-run/actions
[link_license]:https://github.com/jetexe/run-and-post-run/blob/master/LICENSE
[link_issues]:https://github.com/jetexe/run-and-post-run/issues
[link_create_issue]:https://github.com/jetexe/run-and-post-run/issues/new
[link_pulls]:https://github.com/jetexe/run-and-post-run/pulls
[badge_build]:https://img.shields.io/github/actions/workflow/status/gacts/run-and-post-run/tests.yml?branch=main&maxAge=30
[badge_release_version]:https://img.shields.io/github/release/gacts/run-and-post-run.svg?maxAge=30
[badge_license]:https://img.shields.io/github/license/gacts/run-and-post-run.svg?longCache=true
[badge_release_date]:https://img.shields.io/github/release-date/gacts/run-and-post-run.svg?maxAge=180
[badge_commits_since_release]:https://img.shields.io/github/commits-since/gacts/run-and-post-run/latest.svg?maxAge=45
[badge_issues]:https://img.shields.io/github/issues/gacts/run-and-post-run.svg?maxAge=45
[badge_pulls]:https://img.shields.io/github/issues-pr/gacts/run-and-post-run.svg?maxAge=45

[link_build]:https://github.com/gacts/run-and-post-run/actions
[link_license]:https://github.com/gacts/run-and-post-run/blob/main/LICENSE
[link_issues]:https://github.com/gacts/run-and-post-run/issues
[link_create_issue]:https://github.com/gacts/run-and-post-run/issues/new
[link_pulls]:https://github.com/gacts/run-and-post-run/pulls

[community_issue]:https://github.com/orgs/community/discussions/26743
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/jetexe/run-and-post-run.git"
"url": "git+https://github.com/gacts/run-and-post-run.git"
},
"keywords": [
"github",
"actions"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jetexe/run-and-post-run/issues"
"url": "https://github.com/gacts/run-and-post-run/issues"
},
"homepage": "https://github.com/jetexe/run-and-post-run#readme",
"homepage": "https://github.com/gacts/run-and-post-run#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1"
Expand Down

0 comments on commit df62547

Please sign in to comment.