Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update action url to new location #49

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ You can look at [anexia-it/go-anxcloud#96](https://github.com/anexia-it/go-anxcl
what to do, there is also a handy `sed` in the comments to change import paths over the whole repository.

```yaml
# anexia-it/go.anx.io/packages.yaml
# anexia/go.anx.io/packages.yaml

# This package can be imported as go.anx.io/awesomeLibrary
- source: https://github.com/anexia-it/go-awesome-library.git
- source: https://github.com/anexia/go-awesome-library.git
targetName: awesomeLibrary
summary: This library does some really awesome things

# This package can be imported as go.anx.io/go-boring-library
- source: https://github.com/anexia-it/go-boring-library.git
- source: https://github.com/anexia/go-boring-library.git
```

`targetName` defaults to the last part of the URL without the `.git`, `summary` to the first top-level
Expand All @@ -33,7 +33,7 @@ Add this as a new workflow or add the job `trigger` to one of your existing work
to run after your tests went through. Make sure to run it for both branches and tags.

```yaml
# anexia-it/go-awesome-library/.github/workflows/push.yaml
# anexia/go-awesome-library/.github/workflows/push.yaml

name: Trigger go.anx.io update
on:
Expand All @@ -44,7 +44,7 @@ jobs:
name: Trigger go.anx.io update
runs-on: ubuntu-latest
steps:
- uses: anexia-it/go.anx.io@main
- uses: anexia/go.anx.io@main
env:
GOANXIO_E5E_TOKEN: "${{ secrets.GOANXIO_E5E_TOKEN }}"
```
Expand Down