add action

This commit is contained in:
Nadezhda Fedorova 2024-04-10 16:59:23 +03:00
commit d75a9058a4
2 changed files with 15 additions and 0 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Init Alt Environment
- use it to install other dependencies in your workflow later
- it just update apt and rpm

11
action.yml Normal file
View File

@ -0,0 +1,11 @@
# action.yml
name: 'Init Alt Environment'
description: 'Update and install package manager'
runs:
using: 'composite'
steps:
- name: Update and install apt rpm
run: |
echo "apt-get update -y && apt-get install -y apt rpm"
apt-get update -y && apt-get install -y apt rpm