-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from simatic-ax/Test-for-axis
test
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# this workflow is useful to the apax install via setup-apax-runner@teststage. | ||
# This can be used, to pre test the action before it bill be released | ||
name: test-apax-install | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: "Checkout actions repository" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: "Setup the apax runner" | ||
uses: simatic-ax/actions/setup-apax-runner@teststage | ||
with: | ||
APAX_TOKEN: ${{ secrets.APAX_TOKEN }} | ||
|
||
- name: "Login to simatic-ax registry" | ||
if: ${{ inputs.LOGIN_SIMATIC_AX }} | ||
run: | | ||
apax login --registry "https://npm.pkg.github.com" --password "${{ secrets.SIMATIC_AX_TOKEN }}" |