Skip to content

Commit

Permalink
feat: [ANDROAPP-6165] change version name step to updated api
Browse files Browse the repository at this point in the history
  • Loading branch information
xavimolloy committed May 22, 2024
1 parent baaa78e commit b9001d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Set Current Date
- name: Set current date
id: date
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
run: echo "date=$('%Y-%m-%d')" >> "$GITHUB_OUTPUT"

# Set Repository Name As Env Variable
- name: Set repository name as env variable
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Read version name from file
working-directory: ./gradle
id: read-version
run: echo "::set-output name=vName::$(grep 'vName' libs.versions.toml | awk -F' = ' '{print $2}' | tr -d '"')"
run: echo "vName=$(grep 'vName' libs.versions.toml | awk -F' = ' '{print $2}' | tr -d '"')" >> "$GITHUB_OUTPUT"

# Upload Artifact Build
- name: Upload Android artifacts
Expand Down

0 comments on commit b9001d7

Please sign in to comment.