-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update shipyard orb version on circleci config The new version adds support for applications. * feat: add `fetch-shipyard-env` gh workflow Added new Github Action workflow to retrieve Shipyard's vars and print them * use version 3.8, before --> init swap (#10) * feat: Use new integrate-shipyard action (#11) * chore: Update Makefile to Compose v2 (#13) --------- Co-authored-by: Rogerio Shieh Barbosa <[email protected]> Co-authored-by: Peter Valdez <[email protected]> Co-authored-by: Akshay K <[email protected]> Co-authored-by: Oscar Romero <[email protected]>
- Loading branch information
1 parent
82ad07f
commit 26c4894
Showing
4 changed files
with
34 additions
and
14 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
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,20 @@ | ||
on: [push] | ||
|
||
jobs: | ||
print-env-data: | ||
runs-on: ubuntu-latest | ||
name: Fetch Shipyard Vars | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Integrate Shipyard | ||
uses: shipyard/[email protected] | ||
with: | ||
api-token: ${{ secrets.SHIPYARD_API_TOKEN }} | ||
timeout-minutes: "10" | ||
- name: Print Env Data | ||
run: | | ||
export CYPRESS_BASE_URL=${SHIPYARD_ENVIRONMENT_URL} | ||
export CYPRESS_BYPASS_TOKEN=${SHIPYARD_BYPASS_TOKEN} | ||
env | grep -e SHIPYARD -e CYPRESS | ||
shell: bash |
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
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