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
name: High-Perf-Dac | ||
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: z4nyx/docker:latest | ||
- name: Download a Build Artifact | ||
uses: actions/[email protected] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: yakt ToolChain Compile | ||
run: bash build.sh | ||
env: | ||
token: ${{ secrets.TOKEN }} | ||
chat_id: ${{ secrets.CHAT_ID }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: my-artifact | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/download-artifact@v2 | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
- name: Cache | ||
uses: actions/[email protected] | ||
with: | ||
# A list of files, directories, and wildcard patterns to cache and restore | ||
path: | ||
# An explicit key for restoring and saving the cache | ||
key: | ||
# An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case. | ||
restore-keys: # optional | ||
# The chunk size used to split up large files during upload, in bytes | ||
upload-chunk-size: # optional | ||
# An optional boolean when enabled, allows windows runners to save or restore caches that can be restored or saved respectively on other platforms | ||
enableCrossOsArchive: # optional, default is false | ||
# Fail the workflow if cache entry is not found | ||
fail-on-cache-miss: # optional, default is false | ||
# Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache | ||
lookup-only: # optional, default is false |