-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check mirroring/rate limit headers on GHA runners
- Loading branch information
Showing
1 changed file
with
27 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,27 @@ | ||
name: Run Crane Commands | ||
|
||
on: [push] | ||
|
||
jobs: | ||
run-crane: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Download go-containerregistry | ||
run: wget https://github.com/google/go-containerregistry/releases/download/v0.20.3/go-containerregistry_Linux_x86_64.tar.gz | ||
|
||
- name: Extract go-containerregistry | ||
run: tar -xzf go-containerregistry_Linux_x86_64.tar.gz | ||
|
||
- name: Run crane config 1 | ||
run: ./crane config busybox:1.37.0 -v | ||
|
||
- name: Run crane config 2 | ||
run: ./crane config busybox:1.37.0 -v | ||
|
||
- name: Run crane config 3 | ||
run: ./crane config busybox:1.37.0 -v | ||
|