mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-02-22 15:04:32 +01:00
20 lines
569 B
YAML
20 lines
569 B
YAML
# When a release page is published, start the release artifact process
|
|
on: push
|
|
name: Build, Test, and Publish kata-deploy
|
|
|
|
jobs:
|
|
# create image and upload to release page (can we get branch information from release tag?
|
|
publish-artifacts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name : the ok ok
|
|
run: |
|
|
echo "hello worold"
|
|
sudo apt-get update
|
|
sudo apt-get install -y docker git
|
|
echo "still?"
|
|
git clone https://github.com/kata-containers/packaging
|
|
cd packaging
|
|
echo `pwd`
|
|
echo "done...."
|