Skip to content

bin/filter has been removed, how do we accomplish that functionality now? #25866

Answered by fooey
fooey asked this question in Actions
Discussion options

You must be logged in to vote

The new filter functionality seems to be working fine, just had to switch from on:create to on:push

Here’s a full script for posterity

name: 'deploy:beta'

on:
push:
tags:
- 'v20[0-9][0-9].[0-9]+.[0-9]+-beta.[0-9]+'

env:
REACT_APP_ENV: beta

jobs:
build:
name: 'deploy:beta:build'
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v1
with:
fetch-depth: 1
-
uses: actions/setup-node@v1
with:
node-version: 12
registry-url: 'https://registry.npmjs.org/'
-
name: 'NPM Install'
run: 'npm clean-install'
env:
NODE_AUTH_TOKEN: '${{ secrets.NPM_AUTH_TOKEN }}'
-
name: 'NPM Build'
run: 'npm run build'
-
name: 'Sync to AWS'
uses: actions/aws/cli@master
env:
AWS_ACCESS_KEY_ID: '${{ secrets.AWS_ACCESS_K…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant