Skip to content

Commit

Permalink
updates to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
drmorr0 committed Jun 14, 2024
1 parent 7931015 commit 1821dfe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ name: Publish Docker Image to Quay.io
on: # yamllint disable-line rule:truthy
release:
types: [published]
env:
CARGO_INCREMENTAL: 0
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: sccache
IN_CI: "true"

jobs:
build-and-push:
Expand All @@ -13,10 +18,11 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
fetch-tags: true
- name: Run sccache
uses: mozilla-actions/[email protected]
- name: Build
run: make build
run: EXTRA_BUILD_ARTIFACTS= make build
- name: Login to Quay.io
run: >
echo "${{ secrets.QUAY_IO_PASSWORD }}" |
Expand Down

0 comments on commit 1821dfe

Please sign in to comment.