Skip to content

chore: Update apiversions #318

chore: Update apiversions

chore: Update apiversions #318

Workflow file for this run

name: Artifacts
on:
release:
types: [ published ]
workflow_dispatch:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
release:
name: Generate Accelerator Release Artifacts
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Zip and Tar
run: |
mkdir staging
cp -r accelerator staging
cp -r infra-as-code staging
cd staging
tar -cvzf ../accelerator.tar.gz .
zip -r ../accelerator.zip .
- name: Upload Artifacts to Action
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
with:
name: accelerator
path: |
accelerator.tar.gz
accelerator.zip
- name: Add Artifacts to Release
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2.2.1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
./accelerator.tar.gz
./accelerator.zip