chore: fix workflow

This commit is contained in:
Jesús Pérez 2023-07-20 03:48:35 +01:00
parent 29103abfe6
commit a57420c33d

View File

@ -19,13 +19,16 @@ jobs:
- name: Init job triggered by event
run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event "
- name: Workspace
run: echo "🔎 Branch name ${{ gitea.ref }} from repository ${{ gitea.repository }}."
run: |
echo "🔎 Branch name ${{ gitea.ref }} from repository ${{ gitea.repository }}."
echo "${{ secrets.KYD }}" | base64 -d > "$HOME/.kyd"
# ls ${{ gitea.workspace }}
- name: Check out repository code
uses: actions/checkout@v3
with:
ssh-key: "$(echo ${{ secrets.KYD }} | base64 -d )"
persist-credentials: true
# submodules: 'recursive'
submodules: 'recursive'
# Defs in https://github.com/actions/checkout
#run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner."
- name: Submodules update
@ -57,15 +60,9 @@ jobs:
run: |
source "${CARGO_HOME}/env"
while true; do sleep 20; done
<<<<<<< HEAD
#cd ${{ gitea.workspace }}
#cargo build
#ls -l target/debug
=======
cd ${{ gitea.workspace }}
cargo build
ls -l target/debug
>>>>>>> 45468ec (chore: fix workflow)
- name: Install kubectl
run: |
OS="$(uname | tr '[:upper:]' '[:lower:]')"