Skip to content

Commit

Permalink
Merge branch 'main' into replace-docker-with-regclient
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobmoellerdev authored Dec 18, 2024
2 parents 43ed229 + b41f962 commit 086d16b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/publish-to-other-than-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
--outputDirectory ${{ github.workspace }}/tap/Formula)
mkdir -p ${{ github.workspace }}/tap/Aliases
cd ${{ github.workspace }}/tap/Aliases
ln -s ../Formula/$(basename $formula) ./ocm
ln -sf ../Formula/$(basename $formula) ./ocm
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
Expand Down Expand Up @@ -147,6 +147,12 @@ jobs:
steps:
- name: Ensure proper version
run: echo "RELEASE_VERSION=$(echo ${{ github.event.client_payload.version }})" >> $GITHUB_ENV
- name: Generate token
id: generate_token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.OCMBOT_APP_ID }}
private_key: ${{ secrets.OCMBOT_PRIV_KEY }}
- name: Publish Release Event
uses: peter-evans/repository-dispatch@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion cmds/ocm/topics/toi/bootstrapping/topic.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ to executors. It uses the following fields:
the executor will be used for all actions. The first matching executor entry
will be used to execute an action by the bootstrap command
- **<code>resourceRef</code>** *[]ResourceReference*
- **<code>resourceRef</code>** *ResourceReference*
An OCM resource reference describing a component version resource relative to
the component version containing the package resource.
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/ocm_toi-bootstrapping.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ to executors. It uses the following fields:
the executor will be used for all actions. The first matching executor entry
will be used to execute an action by the bootstrap command

- **<code>resourceRef</code>** *[]ResourceReference*
- **<code>resourceRef</code>** *ResourceReference*

An OCM resource reference describing a component version resource relative to
the component version containing the package resource.
Expand Down

0 comments on commit 086d16b

Please sign in to comment.