Skip to content

Commit

Permalink
Update to pre-release
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmlee101 committed May 31, 2024
1 parent ebf5a2d commit 9903b88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/bedrock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ on:
branches: # this ignores tag pushes, and only looks at branches.
- '**'
release:
types: [published]
types: [prereleased]
concurrency:
group: "${{ github.ref }}"
cancel-in-progress: true
env:
CCACHE_BASEDIR: "/home/runner/.cache/ccache"
# Use mirror.bastion1.sjc if running locally
APT_MIRROR_URL: "apt-mirror.expensify.com:843"
CXX: g++-13 CC=gcc-13
jobs:
Run_Bedrock_Tests:
name: "Create Bedrock and Test"
Expand Down Expand Up @@ -71,20 +70,21 @@ jobs:
with:
limit-access-to-actor: true

# If tmate was run, we want to mark this step as failed so bedrock tests don't look like they're passing
# If tmate was run, we want to mark this step as failed so bedrock tests don't look like they're passing
- name: Mark failure if debugging
if: runner.debug == '1'
run: exit 1

- name: Run tests
run: "./ci_tests.sh"

- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
- name: Upload bedrock binary to release
if: "${{ startsWith(github.ref, 'refs/tags/') }}"
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_REPOSITORY: "${{ github.repository }}"
with:
files: |-
./bedrock
if: "${{ startsWith(github.ref, 'refs/tags/') }}"

0 comments on commit 9903b88

Please sign in to comment.