Skip to content

Commit

Permalink
GitHub Actions: Fix meshtastic display issue in logs (#5811)
Browse files Browse the repository at this point in the history
  • Loading branch information
vidplace7 authored Jan 11, 2025
1 parent b62bdbc commit c144ee7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/package_obs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Package for OpenSUSE Build Service
on:
workflow_call:
secrets:
OBS_USERNAME:
required: true
OBS_PASSWORD:
required: true
PPA_GPG_PRIVATE_KEY:
Expand Down Expand Up @@ -69,13 +67,15 @@ jobs:
run: ls -lah

- name: Configure osc
env:
OBS_USERNAME: meshtastic
run: |
# Setup OpenSUSE Build Service credentials
mkdir -p ~/.config/osc
echo "[general]" > ~/.config/osc/oscrc
echo "apiurl=https://api.opensuse.org" >> ~/.config/osc/oscrc
echo "[https://api.opensuse.org]" >> ~/.config/osc/oscrc
echo "user=${{ secrets.OBS_USERNAME }}" >> ~/.config/osc/oscrc
echo "user=${{ env.OBS_USERNAME }}" >> ~/.config/osc/oscrc
echo "pass=${{ secrets.OBS_PASSWORD }}" >> ~/.config/osc/oscrc
echo "credentials_mgr_class=osc.credentials.PlaintextConfigFileCredentialsManager" >> ~/.config/osc/oscrc
# Create a temporary directory for osc checkout
Expand Down

0 comments on commit c144ee7

Please sign in to comment.