-
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.
- Loading branch information
1 parent
cb8571c
commit 7cf94c1
Showing
3 changed files
with
78 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,44 @@ | ||
name: Build and Upload Docker image (INT) | ||
'on': | ||
push: | ||
tags: | ||
- v* | ||
jobs: | ||
create-docker-image: | ||
name: Create Docker Image | ||
runs-on: | ||
- ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
- uses: azure/docker-login@v1 | ||
with: | ||
login-server: '${{ secrets.UBIQUE_ACR_REGISTRY }}' | ||
username: '${{ secrets.UBIQUE_ACR_USERNAME }}' | ||
password: '${{ secrets.UBIQUE_ACR_PASSWORD }}' | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Docker Metadata | ||
id: docker_meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
images: | | ||
${{ secrets.UBIQUE_ACR_REGISTRY }}/sprind-next-gen-signing-service | ||
tags: > | ||
# dynamically set the branch name and sha as a custom tag if | ||
tag_add_commithash is enabled | ||
type=semver,pattern={{raw}},value=${{ github.ref_name }},enable=true | ||
type=raw,value=${{ github.ref_name }}-{{sha}},enable=true | ||
# set latest tag for default branch | ||
type=raw,value=latest,enable=true | ||
- name: Docker build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
tags: '${{ steps.docker_meta.outputs.tags }}' | ||
labels: '${{ steps.docker_meta.outputs.labels }}' | ||
file: ./Dockerfile | ||
push: true | ||
context: . | ||
cache-from: type=gha | ||
cache-to: 'type=gha,mode=max' |
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,17 @@ | ||
name: Rust Clippy Check | ||
'on': | ||
- pull_request | ||
jobs: | ||
clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
components: clippy | ||
- name: Run clippy | ||
run: cargo clippy -- -D warnings |
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,17 @@ | ||
name: Rust Format Check | ||
'on': | ||
- pull_request | ||
jobs: | ||
rustfmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
profile: minimal | ||
toolchain: stable | ||
components: rustfmt | ||
- name: Run rustfmt | ||
run: cargo fmt -- --check |