Skip to content

Commit

Permalink
Release version 0.41.2
Browse files Browse the repository at this point in the history
Summary: Fixes indentation error in release yml file

Differential Revision: D36097832

fbshipit-source-id: b41e18de09f52861c13e8197f60876c13a874267
  • Loading branch information
adityasharat authored and facebook-github-bot committed May 3, 2022
1 parent 91f2e4e commit e8887ee
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:
with:
java-version: '11'
- name: Fetch buck
run: |
(rm -rf buck && mkdir buck && \
wget https://jitpack.io/com/github/facebook/buck/v2021.01.12.01/buck-v2021.01.12.01-java11.pex && \
mv buck-v2021.01.12.01-java11.pex buck/buck && \
chmod +x buck/buck && \
ls -l buck)
run: |
(rm -rf buck && mkdir buck && \
wget https://jitpack.io/com/github/facebook/buck/v2021.01.12.01/buck-v2021.01.12.01-java11.pex && \
mv buck-v2021.01.12.01-java11.pex buck/buck && \
chmod +x buck/buck && \
ls -l buck)
- name: Assemble sample app
run: BUCK_PATH=`realpath buck/buck` ./gradlew :sample:assembleRelease --stacktrace
publish-job:
Expand All @@ -115,12 +115,12 @@ jobs:
- name: Update gradle.properties
run: echo -e "signing.secretKeyRingFile=/tmp/secring.gpg\nsigning.keyId=${{ secrets.SIGNING_KEY_ID }}\nsigning.password=${{ secrets.SIGNING_PASSWORD }}\nmavenCentralPassword=${{ secrets.SONATYPE_NEXUS_PASSWORD }}\nmavenCentralUsername=${{ secrets.SONATYPE_NEXUS_USERNAME }}" >> gradle.properties
- name: Fetch buck
run: |
(rm -rf buck && mkdir buck && \
wget https://jitpack.io/com/github/facebook/buck/v2021.01.12.01/buck-v2021.01.12.01-java11.pex && \
mv buck-v2021.01.12.01-java11.pex buck/buck && \
chmod +x buck/buck && \
ls -l buck)
run: |
(rm -rf buck && mkdir buck && \
wget https://jitpack.io/com/github/facebook/buck/v2021.01.12.01/buck-v2021.01.12.01-java11.pex && \
mv buck-v2021.01.12.01-java11.pex buck/buck && \
chmod +x buck/buck && \
ls -l buck)
- name: Upload Android Archives
run: ./gradlew publish --no-daemon --no-parallel --info --stacktrace
- name: Release and close
Expand Down

0 comments on commit e8887ee

Please sign in to comment.